Run your whole panel on autopilot. List services, check your balance and fire off orders straight from your own code — with one access key 🔌 and plain JSON in return. No login, no password, no nonsense.
🔑 Sign in to get your personal API key.
Send a regular form post. key and action are always required.
action balance
returns => {"balance":"12.34","currency":"USD"}
action services
Returns an array of currently active services. Use the numeric service value when ordering.
item => {"service":1,"name":"Instagram followers [fast]","type":"social","category":"Instagram","rate":"0.0500","min":10,"max":100000000}
action add + service, link, quantity
Paid instantly from balance — top up first. Quantity must be at least the service minimum.
returns => {"order":345}
action status + order
returns => {"charge":"5.00","currency":"USD","status":"In progress","remains":"42","start_count":"0"}
remains is what's still left to deliver — drops from quantity down to 0 as the order fills.
Many at once => orders (comma-separated, up to 100)
returns => {"345":{...},"346":{...}}
Pending => paid, waiting to be processed
In progress => being delivered
Completed => finished
Canceled => not processed
Refunded => amount returned to balance
On failure => {"error":"reason"}
Invalid API key
Incorrect service ID
Not enough funds on balance
Quantity is less than the minimum
curl -d "key=YOUR_KEY&action=add&service=12&link=https://instagram.com/example&quantity=100" https://smmwar.com/api/v2