Integrate our service into your applications using a simple HTTP API.
GET and POST requests are supported, responses are in JSON format.
All API requests must include the key parameter — your unique API key. The key can be found in the API section of your panel.
| Parameter | Type | |
|---|---|---|
key | string | required |
action | string | required |
| Parameter | Type | |
|---|---|---|
key | string | required |
action | string | required |
rate — price per 1000 units in USD.| Parameter | Type | Description | |
|---|---|---|---|
key | string | API Key | required |
action | string | «add» | required |
service | integer | Service ID | required |
link | string | URL / order target | required |
quantity | integer | Quantity (not required for Package type) | optional |
drip_feed | boolean | Enable drip-feed (1 or 0) | optional |
runs | integer | Number of runs (drip-feed) | optional |
interval | integer | Interval in minutes (drip-feed) | optional |
comments | string | Comments (Custom Comments) | optional |
usernames | string | Mentions | optional |
hashtags | string | Hashtags | optional |
answer_number | integer | Answer number (Poll) | optional |
emoji | string | Emoji string (Emoji) | optional |
| Parameter | Type | Description | |
|---|---|---|---|
key | string | API Key | required |
action | string | «status» | required |
order | integer | Single order ID | one of two |
orders | string | Multiple IDs comma-separated: 1,2,3 | one of two |
| Parameter | Type | Description | |
|---|---|---|---|
key | string | API Key | required |
action | string | «cancel» | required |
order | integer | Single order ID | one of two |
orders | string | Multiple IDs comma-separated | one of two |
| Parameter | Type | Description | |
|---|---|---|---|
key | string | API Key | required |
action | string | «refill» | required |
order | integer | Single order ID | one of two |
orders | string | Multiple IDs comma-separated | one of two |
| Parameter | Type | Description | |
|---|---|---|---|
key | string | API Key | required |
action | string | «refill_status» | required |
refill | integer | Refill request ID | one of two |
refills | string | Multiple IDs comma-separated | one of two |
The type field of a service defines the set of additional parameters required when creating an order.
| Type | Extra parameters | Description |
|---|---|---|
Default | — | Default. Only link and quantity |
Custom Comments | comments | List of comments, one per line |
Package | — | Fixed package, quantity not needed |
Mentions | usernames | List of @usernames, one per line |
Mentions with Hashtags | usernames, hashtags | Mentions + Hashtags |
Hashtags | hashtags | List of #hashtags, one per line |
Poll | answer_number | Answer option number (starting from 1) |
Emoji | emoji | Emoji string, e.g. ❤️🔥 |
On error, the API always returns HTTP 200 with JSON containing the error key.
| Message | Reason |
|---|---|
Incorrect API key | Key not found or invalid |
Your account is banned | Account is banned |
Incorrect action | Unknown action value |
Incorrect parameters | Missing service or link |
Incorrect service ID | Service not found or disabled |
Incorrect order ID | Order not found or belongs to another user |
Incorrect refill ID | Refill request not found or belongs to another user |
Not enough funds on balance | Insufficient funds |
Quantity must be between X and Y | Quantity out of range |
Runs must be at least 1 | drip-feed: runs must be at least 1 |
Interval must be at least 1 minute | drip-feed: interval must be at least 1 minute |
Order is already completed | Cannot cancel a completed order |
Refill is not available for this order | Service does not support refill or order is not completed |