Home › SMM panel API for resellers
SMM Panel API
235 services across 5 platforms from $0.01 per 1000, reachable from one endpoint with a key you generate yourself -- no approval step, no separate reseller tier.
Built for resellers
One endpoint, one action parameter — the shape the whole market already speaks, so an existing client works unchanged.
# place an order
curl https://smmtap.site/api/v2 \
-d key=YOUR_API_KEY \
-d action=add \
-d service=1435 \
-d link=https://instagram.com/yourprofile \
-d quantity=1000
# response
{ "order": "a47f21c8" }
- servicesPull the whole catalog with live prices and limits.
- addPlace an order and get its id back.
- statusCheck one order or a comma-separated batch.
- balanceRead what's left in your wallet.
Endpoint reference
| action | Required params | Returns |
|---|---|---|
| services | key | The active catalog: id, name, category, rate per 1000, min, max. |
| add | key, service, link, quantity | The new order's id, or an error if the link or quantity fails validation. |
| status | key, order (or orders, comma-separated) | Status, start count and remaining count for one order or a batch. |
| balance | key | The account's current balance. |
Getting a key
Create a free account, open Account, and generate a key -- it is live immediately against the same balance and catalog you would use ordering through the site. Generating a new key revokes the old one on the spot, so rotating it does not require deleting the account or opening a ticket.
Popular platforms
Worth reading first
Guides from our blog on what these numbers do and what they do not.
Reselling Through an API: What to Build and What to Expect
The standard panel API is small and mostly consistent. The work is not the endpoints, it is order state, idempotency, and what happens when a supplier lies.
8 min readChoosing an SMM Supplier: The Tests Resellers Should Run
Your supplier decides your refund rate. How to test uptime, API behaviour, drop rates and balance risk before routing real customer orders through them.
8 min readHow to Buy Social Media Followers Safely: A Buyer's Guide
Bought followers can be harmless or can wreck an account. The difference is source quality, delivery speed and ratios. How to judge a provider before paying.
Frequently asked questions
Everything you need before your first order.
Does smmtap have an API?
Yes -- one endpoint, /api/v2, with an action parameter: services, add, status and balance. It is the same shape the wholesale SMM market already speaks, so an existing reseller script or panel usually needs nothing more than a base-URL change to point at it.
Is the API free to use?
Yes. Generate a key from your account page and it works immediately -- there is no separate reseller tier, higher balance requirement or approval step to unlock it.
How do I authenticate?
With a key parameter on the request, not a header -- the convention every client in this space already expects. Generate or rotate it from Account without contacting support.
What does the response look like?
JSON. services returns the live catalog with rate, min and max per entry; add returns the new order's id; status returns its state and counts; balance returns what is left to spend. Errors come back as { "error": "..." } with a 4xx status rather than a silent 200.
Are there rate limits?
Up to 120 requests per minute, the same limit every route on the site runs under -- enough for a script polling order status or syncing the catalog on a schedule, not designed for scraping the whole catalog in a tight loop.
Can I use my existing SMM panel bot or script?
Usually yes. The action/service/link/quantity shape is the de facto standard this market's tooling already targets, so most existing integrations need only a new API key and a new base URL.