JavaScript is REQUIRED

Enable JavaScript to access this site

Confirm Action
Are you sure?
Notifications
Clear All
No notifications
Dark Mode
Language: English
✓ FINISHED

SECURITY VALIDATION

Checking Domain...
Right-click disabled!
$0.00
0
WELCOME BACK
BALANCE
$0.00
0
TODAY
0
THIS WEEK
0
THIS MONTH
0
ALL TIME
MONTHLY REVENUE
$0.00
January 2026
ACTIVE PRODUCTS 0
RECENTLY GENERATED KEYS View All →
Key Generator
Generate License Keys For Your Customers
Select Product
Select Duration
Stock—
Total Cost$0.00
Generated Keys
My Statistics
—
reseller
Member since 2026
0
My Keys
$0.00
My Spending
$0.00
Balance
Sales Chart
Products Bought
Recent Purchases
Statistics
0
Total Keys
$0.00
Revenue
0
Active
0
Resets
Advanced Revenue Analytics
Products Breakdown
Key History
# Key Product Price By Time Status
Export Key History
Balance Transactions
DateTypeAmount
No balance transactions yet.
Transactions will appear here when you make purchases or receive balance adjustments.
Support Tickets
Submit Ticket
You can submit one ticket every 3 hours.
Your Submitted Tickets
No tickets submitted yet
Reset License Key
Reset Keys
Daily Limit0 / 10
Your Hacks:
Choose your Hack
Recent Reset History
Time Product Status
Broadcast Message
Broadcast to Everyone
Message will reach all users as a notification and top bar
Previous Broadcasts
Manage Users
Products Manager
Keys Manager
Key Product Days PriceStatus
Manage Balances
Custom Prices Management
Live Clock
Bulk Apply Custom Price
RESELLERS — TICK WHO GETS THIS PRICE
0 selected
PRODUCTS — TICK WHICH PRODUCTS
0 selected
CUSTOM PRICE FOR EVERY TICKED PRODUCT
Applies the same price to every ticked reseller × ticked product. Existing prices are updated, not duplicated.
Resellers with Custom Prices
0 reseller(s), 0 price(s)
Ticket Management
Open Tickets
0
Answered
0
Closed
0
Ticket Queue
No support tickets found
Site Statistics
0
Users
0
Keys
$0.00
Revenue
0
Products
Platform Growth
Live Activity Feed
4329
Tracked IPs
82
Banned IPs
1146
Total Resellers
170
Banned Resellers
IP Security Actions
Emergency Actions
Tracked IP Addresses
IP Address Score Attempts Status Last Activity Actions
Attempts Log SECURITY
All Login Attempts 0
IP Username Location Time Status Action
Clear All Attempts
Blocked Countries GEO BLOCK
Block a Country
Blocked Countries 0
Audit Log OPERATIONS
System Activity Feed 0
User Action Details Time
SarifPanel API Integration DRIP v1 LIVE
API Status
CONNECTED (ONLINE)
https://sarifpanel.com
SarifPanel Balance
$10.00 USD
Live credit balance
Catalog Items
101 products
Lifetime Generated: 0
Instant Key Generator (SarifPanel Live) Real-time Generation
SarifPanel Live Catalog 0
ID Product Name Group / Category Validity SarifPanel Price Stock Action
Loading catalog...
SarifPanel API Settings
Licence Dashboard API Integration RESELLER v1 LIVE
API Status
CONNECTED (ONLINE)
https://licencedashboard.shop/api/v1
Licence Dashboard Balance
$0.00 USD
Live credit balance
Catalog Items
0 products
Lifetime Generated: 0
Instant Key Generator (Licence Dashboard Live) Real-time Generation
Licence Dashboard Live Catalog 0
ID Product Name Group / Category Validity Licence Dashboard Price Stock Action
Loading catalog...
Licence Dashboard API Settings
Reseller API Management
Fri, Sep 18, 2026 11:00:08 AM (BD)
0
API KEYS
0
ACTIVE
0
CALLS TODAY
Grant / Re-issue API Access
One token per reseller. Re-issuing generates a fresh token and replaces the old one. Sub-sellers can't receive API tokens.
Reseller API Keys
Your Live Reseller API Key
Gateway Operational

Use this private bearer token to authenticate your storefront, Discord bot, or backend integration. Never share this secret publicly.

Rate Limit: 100 / min
Daily Limit: 5,000 / day
Status: Active
Platform API v1 RESTful JSON

Platform API Reference & SDKs

Integrate Drip digital key store directly into your application. Query real-time product catalogs, check wallet balances, fetch instant key deliveries, and automate fulfillments.

Rate Limits
100 / 300 RPM
API Fee
0% (No extra fee)
Currency Scale
1 USD = 100M Microcents
Authentication
Bearer Token Header
Language SDK Downloads (.zip)
Ready-to-use starter code packages complete with instructions, config templates, and API clients.
Python SDK
.ZIP
stdlib urllib — catalog → balance → generate → keys[]
Node.js SDK
.ZIP
fetch — catalog → balance → generate → keys[]
PHP SDK
.ZIP
curl extension — catalog → balance → generate → keys[]
Go SDK
.ZIP
net/http — catalog → balance → generate → keys[]
cURL SDK
.ZIP
Shell scripts for every endpoint
RESPONSE STATUS CODES
200 OK — Key generated
400 FAIL — Insufficient balance or out of stock
GET /api/v1/history Standard Compat — Get recent delivered key history.

Returns the array of license keys delivered to your account, including purchase date and duration.

curl -X GET "https://yourdomain.com/api/v1/history" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
GET /api/v1/me Standard Compat — User profile & IP check: account details, role, balance, connecting IP & threat s...

Verifies your token, returns account username, current balance, and checks whether your inbound IP passes security filters.

curl -X GET "https://yourdomain.com/api/v1/me" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
GET /api/v1/api-whitelist Standard Compat — IP whitelist & threat status test: check if your current IP (or ?ip=) is clean, whit...

Test if your server's outbound IP is recognized, whitelisted, and safe from rate-limit blocks.

curl -X GET "https://yourdomain.com/api/v1/api-whitelist" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
GET /api/v1/ping Standard Compat — System health ping: quick check for API uptime and connectivity.

No token required. Check if the gateway is reachable and responding.

curl -X GET "https://yourdomain.com/api/v1/ping"
POST /api/v1/generate Standard Compat — Instant key generation and automatic balance deduction.

Generates one or more license keys for the specified product and duration. Automatically checks reseller balance.

curl -X POST "https://yourdomain.com/api/v1/generate" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "product_id": 1,
    "days": 30,
    "quantity": 1
  }'
GET /api/v1/catalog Standard Compat — Product catalog: real-time active products and pricing.

Returns all active products, duration options, and your wholesale cost per key.

curl -X GET "https://yourdomain.com/api/v1/catalog" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
GET /api/v1/balance Standard Compat — Check wallet balance: instant available funds inquiry.

Returns your current account balance in plain USD.

curl -X GET "https://yourdomain.com/api/v1/balance" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
Money Format
All balance and pricing values are plain decimal USD strings — no unit conversion needed.
"balance": "5.00"
Global Error Codes
Common error codes returned in standard JSON structure: { error: { code, message } }
product_not_found (400) order_failed (400) invalid_token (401) insufficient_balance (402) rate_limit (429)

Sub-Seller Management

Mon, Sep 21, 2026 04:03:36 AM (BD)
768
Total
638
Active
130
Banned
All Sub-Sellers (768)
SUB-SELLER PARENT BALANCE KEYS ACTIONS

SUB-SELLER MANAGEMENT

0
ACTIVE
5
MAX LIMIT
5
AVAILABLE
Create New Sub-Seller
Add a new sub-seller under your account
Your balance: $0.00
Minimum initial balance: $30.00 required to register sub-seller
My Sub-Sellers
0 active sub-seller
Balance History
0 transactions
DATE USER AMOUNT
About Sub-Sellers
  • Sub-sellers see the same products & prices as you
  • Their balance is allocated from your balance
  • You can view their key generation history
  • Sub-sellers cannot create their own sub-sellers
  • Sub-sellers cannot access deposit feature
  • You can grant reset API access to sub-sellers
  • You can reset keys generated by your sub-sellers

TELEGRAM ACCESS WHITELIST

0
WHITELISTED
0
MAX SLOTS
0
AVAILABLE
Whitelisted IDs
0 of 0 slots used
CHAT ID USER NOTES DEL
How It Works
  • 1 sub-seller = 1 whitelist slot
  • Whitelisted users can access protected site
  • Create more sub-sellers for more slots

TELEGRAM 2-FACTOR AUTHENTICATION CONTROL

Telegram 2FA Master Switch
Enable or disable Telegram-based login OTP verification anytime
Telegram 2FA Security Shield
When active, users must verify a 6-digit OTP code sent by your Telegram bot during login.
Create a bot via @BotFather on Telegram and paste the HTTP API Token here.
Your Telegram numeric Chat ID. Obtain it by messaging @userinfobot or @raw_data_bot.
Telegram 2FA Security Architecture
  • Admin can enable or disable Telegram 2FA anytime with instant effect
  • OTP codes are cryptographically generated (6 digits) and valid for 5 minutes
  • Login attempts are rejected until verified, defending against stolen or brute-forced passwords
  • Sub-sellers and resellers can have personal Chat IDs assigned or route through admin channel