Connect your website, SMM panel, or reseller application directly to our automated service infrastructure via standard REST JSON HTTP requests.
Retrieve all active services, live rates, minimum/maximum quantities, refill availability, and service types.
| Parameter | Type | Description |
|---|---|---|
| key | string | Your account API Key. |
| action | string | Must be set to services |
[
{
"service": 101,
"name": "Instagram Followers ~ Instant",
"type": "Default",
"category": "Instagram Followers",
"rate": "0.5500",
"min": "100",
"max": "50000",
"refill": true,
"cancel": false
}
]
Submit a new automated order to the system.
| Parameter | Type | Description |
|---|---|---|
| key | string | Your account API Key. |
| action | string | Must be set to add |
| service | integer | Service ID. |
| link | string | Target Link / URL / Username. |
| quantity | integer | Quantity required. |
| comments (optional) | string | Custom comments (one per line, required for custom comment services). |
{
"order": 23501
}
Check status, charge, start count, and remaining quantity for a single order.
| Parameter | Type | Description |
|---|---|---|
| key | string | Your account API Key. |
| action | string | Must be set to status |
| order | integer | Order ID. |
{
"charge": "0.2781",
"start_count": "3572",
"status": "Completed",
"remains": "0",
"currency": "USD"
}
Check status for up to 100 order IDs in a single HTTP POST call.
| Parameter | Type | Description |
|---|---|---|
| key | string | Your account API Key. |
| action | string | Must be set to status |
| orders | string | Comma-separated Order IDs (e.g. 101,102,103) |
{
"101": {
"charge": "0.2781",
"start_count": "3572",
"status": "Completed",
"remains": "0",
"currency": "USD"
},
"102": {
"charge": "0.5000",
"start_count": "100",
"status": "In progress",
"remains": "250",
"currency": "USD"
}
}
Request an automatic refill for eligible dropped orders.
| Parameter | Type | Description |
|---|---|---|
| key | string | Your account API Key. |
| action | string | Must be set to refill |
| order / orders | integer / string | Single Order ID or comma-separated Order IDs. |
{
"refill": "1205"
}
Check status of single or multiple refill requests.
| Parameter | Type | Description |
|---|---|---|
| key | string | Your account API Key. |
| action | string | Must be set to refill_status |
| refill / refills | integer / string | Single Refill ID or comma-separated Refill IDs. |
{
"status": "Completed"
}
Request cancellation for eligible active orders.
| Parameter | Type | Description |
|---|---|---|
| key | string | Your account API Key. |
| action | string | Must be set to cancel |
| orders | string | Comma-separated Order IDs. |
[
{ "order": 101, "cancel": 1 },
{ "order": 102, "cancel": { "error": "Order cannot be canceled" } }
]
Retrieve current account balance and currency format.
| Parameter | Type | Description |
|---|---|---|
| key | string | Your account API Key. |
| action | string | Must be set to balance |
{
"balance": "2088.5029",
"currency": "USD"
}