mmtap

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.

SMM Panel API on smmtap — followers, likes and views with instant start and crypto payment
4actions
235services
120requests / min
24/7support

Built for resellers

One endpoint, one action parameter — the shape the whole market already speaks, so an existing client works unchanged.

smmtap.site/api/v2
# 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

actionRequired paramsReturns
serviceskeyThe active catalog: id, name, category, rate per 1000, min, max.
addkey, service, link, quantityThe new order's id, or an error if the link or quantity fails validation.
statuskey, order (or orders, comma-separated)Status, start count and remaining count for one order or a batch.
balancekeyThe 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.

All guides

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.