A simple REST API for placing orders, checking status and tracking your balance. All requests use POST and return a JSON response.
Returns all services available on the panel, along with rate, min/max quantity and category.
| Parameter | Required | Description |
|---|---|---|
| key | Yes | Your API key |
| action | Yes | Send as "services" |
[
{
"service": 1,
"name": "Instagram Followers",
"type": "Default",
"category": "Instagram",
"rate": "0.90",
"min": "50",
"max": "10000",
"refill": true,
"cancel": true,
"dripfeed": false
}
]
Creates a new order for the selected service. The required parameters depend on the service type — pick a type below.
Service type (type)
| Parameter | Required | Description |
|---|---|---|
| key | Yes | Your API key |
| action | Yes | Send as "add" |
| service | Yes | Service ID |
| link | Yes | Profile, post or channel link |
| quantity | Yes | Needed quantity |
| runs | No | Drip-feed services only (dripfeed=true) — how many parts to split delivery into (minimum 2) |
| interval | No | Drip-feed services only — interval between parts, in minutes (minimum 1) |
{
"order": 23501
}
| Parameter | Required | Description |
|---|---|---|
| key | Yes | Your API key |
| action | Yes | Send as "add" |
| service | Yes | Service ID |
| link | Yes | Profile, post or channel link |
| quantity | Yes | Always 1 — the rate is priced for the whole package |
{
"order": 23502
}
| Parameter | Required | Description |
|---|---|---|
| key | Yes | Your API key |
| action | Yes | Send as "add" |
| service | Yes | Service ID |
| link | Yes | Link to the post containing the poll |
| quantity | Yes | Needed quantity |
| answer_number | Yes | Which poll answer option to vote for (1, 2, 3 ...) |
{
"order": 23503
}
Checks the current status of a single order.
| Parameter | Required | Description |
|---|---|---|
| key | Yes | Your API key |
| action | Yes | Send as "status" |
| order | Yes | Order ID |
{
"charge": "0.90",
"start_count": "3572",
"status": "In progress",
"remains": "200",
"currency": "USD"
}
Checks the status of up to 100 orders in a single request.
| Parameter | Required | Description |
|---|---|---|
| key | Yes | Your API key |
| action | Yes | Send as "status" |
| orders | Yes | Comma-separated order IDs (max 100) |
{
"23501": {
"charge": "0.90",
"status": "Completed",
"remains": "0"
},
"23502": {
"charge": "1.20",
"status": "In progress",
"remains": "150"
}
}
Requests a refill for a single order whose count has dropped.
| Parameter | Required | Description |
|---|---|---|
| key | Yes | Your API key |
| action | Yes | Send as "refill" |
| order | Yes | Order ID |
{
"refill": "1"
}
Checks the current status of a submitted refill request.
| Parameter | Required | Description |
|---|---|---|
| key | Yes | Your API key |
| action | Yes | Send as "refill_status" |
| refill | Yes | Refill ID |
{
"status": "Completed"
}
Requests cancellation of one or more orders (not available for all services).
| Parameter | Required | Description |
|---|---|---|
| key | Yes | Your API key |
| action | Yes | Send as "cancel" |
| orders | Yes | Comma-separated order IDs |
[
{ "order": 23501, "cancel": { "status": "Completed" } },
{ "order": 23502, "cancel": { "status": "Error" } }
]
Returns your current account balance.
| Parameter | Required | Description |
|---|---|---|
| key | Yes | Your API key |
| action | Yes | Send as "balance" |
{
"balance": "100.84292",
"currency": "USD"
}
Any error is returned in the following format:
{
"error": "Incorrect API key"
}