PROVIDER

API

REST · JSON · POST — orders, status, refill, cancel, balance.

Credentials

Sign in to view
JSON · UTF-8

Endpoints

services
Full service catalog
add
Place a new order
status
Single / multiple order status
refill
Refill an order + check status
cancel
Cancel one or more orders
balance
Account balance

POSTService list

PARAMETERDESCRIPTION
keyYour API key
actionservices

RESPONSE (EXAMPLE)

[
{
"service": 1,
"name": "Instagram Followers — Real",
"type": "Default",
"category": "Instagram",
"rate": "0.420",
"min": "100",
"max": "100000",
"refill": true,
"cancel": true }]

POSTAdd order

PARAMETERDESCRIPTION
keyYour API key
actionadd
serviceService ID
linkTarget link
quantityNeeded quantity
runs opt.Runs to deliver (drip-feed)
interval opt.Interval in minutes

Request body

{
"key": "YOUR_API_KEY",
"action": "add",
"service": 1,
"link": "https://instagram.com/handle",
"quantity": 1000}

Response

{ "order": 23501 }
PARAMETERDESCRIPTION
keyYour API key
actionadd
serviceService ID
linkTarget link

Request body

{
"key": "YOUR_API_KEY",
"action": "add",
"service": 10,
"link": "https://instagram.com/handle"}
PARAMETERDESCRIPTION
keyYour API key
actionadd
serviceService ID
linkTarget link
commentsComments list, separated by \n

Request body

{
"key": "YOUR_API_KEY",
"action": "add",
"service": 42,
"link": "https://instagram.com/p/abc",
"comments": "Nice post\nGreat work\nLove it"}
PARAMETERDESCRIPTION
keyYour API key
actionadd
serviceService ID
linkTarget link
quantityNeeded quantity
answer_numberPoll answer number

Request body

{
"key": "YOUR_API_KEY",
"action": "add",
"service": 17,
"link": "https://twitter.com/poll/123",
"quantity": 500,
"answer_number": 2}
PARAMETERDESCRIPTION
keyYour API key
actionadd
serviceService ID
usernameUsername
minQuantity min
maxQuantity max
postsNew posts count
delayMinutes: 0, 5, 10, 15, 30, 60, 90
expiry opt.Format: d/m/Y

Request body

{
"key": "YOUR_API_KEY",
"action": "add",
"service": 100,
"username": "handle",
"min": 10,
"max": 100,
"posts": 5,
"delay": 15}

POSTOrder status

PARAMETERDESCRIPTION
keyYour API key
actionstatus
orderSingle order ID
ordersOr: comma-separated IDs (max 100)

Single response

{
"charge": "0.27819",
"start_count": "3572",
"status": "Partial",
"remains": "157",
"currency": "USD"}

Multi response

{
"1": { "charge": "0.27", "status": "Partial", ... },
"10": { "error": "Incorrect order ID" },
"100": { "status": "In progress", ... }}

POSTRefill

PARAMETERDESCRIPTION
keyYour API key
actionrefill or refill_status
orderOrder ID (for refill)
refillRefill ID (for refill_status)

Create refill

{ "key": "…", "action": "refill", "order": 123 }// → { "refill": "1" }

Get refill status

{ "key": "…", "action": "refill_status", "refill": 1 }// → { "status": "Completed" }

POSTCancel orders

PARAMETERDESCRIPTION
keyYour API key
actioncancel
ordersComma-separated order IDs

Request body

{
"key": "YOUR_API_KEY",
"action": "cancel",
"orders": "1,10,100"}

POSTAccount balance

PARAMETERDESCRIPTION
keyYour API key
actionbalance

Response

{
"balance": "100.84292",
"currency": "USD"}

All errors return HTTP 200 with an error key. Always check for it before parsing data.