API
REST · JSON · POST — orders, status, refill, cancel, balance.
Credentials
Sign in to view
JSON · UTF-8
Endpoints
POSTService list
| PARAMETER | DESCRIPTION |
|---|---|
| key | Your API key |
| action | services |
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
| PARAMETER | DESCRIPTION |
|---|---|
| key | Your API key |
| action | add |
| service | Service ID |
| link | Target link |
| quantity | Needed 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 }| PARAMETER | DESCRIPTION |
|---|---|
| key | Your API key |
| action | add |
| service | Service ID |
| link | Target link |
Request body
{
"key": "YOUR_API_KEY",
"action": "add",
"service": 10,
"link": "https://instagram.com/handle"}| PARAMETER | DESCRIPTION |
|---|---|
| key | Your API key |
| action | add |
| service | Service ID |
| link | Target link |
| comments | Comments 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"}| PARAMETER | DESCRIPTION |
|---|---|
| key | Your API key |
| action | add |
| service | Service ID |
| link | Target link |
| quantity | Needed quantity |
| answer_number | Poll answer number |
Request body
{
"key": "YOUR_API_KEY",
"action": "add",
"service": 17,
"link": "https://twitter.com/poll/123",
"quantity": 500,
"answer_number": 2}| PARAMETER | DESCRIPTION |
|---|---|
| key | Your API key |
| action | add |
| service | Service ID |
| username | Username |
| min | Quantity min |
| max | Quantity max |
| posts | New posts count |
| delay | Minutes: 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
| PARAMETER | DESCRIPTION |
|---|---|
| key | Your API key |
| action | status |
| order | Single order ID |
| orders | Or: 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
| PARAMETER | DESCRIPTION |
|---|---|
| key | Your API key |
| action | refill or refill_status |
| order | Order ID (for refill) |
| refill | Refill 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
| PARAMETER | DESCRIPTION |
|---|---|
| key | Your API key |
| action | cancel |
| orders | Comma-separated order IDs |
Request body
{
"key": "YOUR_API_KEY",
"action": "cancel",
"orders": "1,10,100"}POSTAccount balance
| PARAMETER | DESCRIPTION |
|---|---|
| key | Your API key |
| action | balance |
Response
{
"balance": "100.84292",
"currency": "USD"} All errors return HTTP 200 with an error key. Always check for it before parsing data.