Service List API
Retrieve the list of all available services on the platform.
| Parameters |
Description |
| key |
Your API key |
| action |
services |
Example Response
[
{
"service": 1,
"name": "Followers",
"type": "Default",
"category": "First Category",
"rate": "0.90",
"min": "50",
"max": "10000",
"refill": true
}
]
Add New Order
Place a new marketing order through the SMM API.
| Parameters |
Description |
| key |
Your API key |
| action |
add |
| service |
Service ID |
| link |
Link to page |
| quantity |
Needed quantity |
| runs (optional) |
Runs to deliver |
| interval (optional) |
Interval in minutes |
| Parameters |
Description |
| key |
Your API key |
| action |
add |
| service |
Service ID |
| link |
Link to page |
| Parameters |
Description |
| key |
Your API key |
| action |
add |
| service |
Service ID |
| link |
Link to page |
| quantity |
Needed quantity |
| answer_number |
Answer number of the poll |
| Parameters |
Description |
| key |
Your API key |
| action |
add |
| service |
Service ID |
| username |
Username |
| min |
Quantity min |
| max |
Quantity max |
| posts |
New posts count |
| delay |
Delay in minutes. Values: 0, 5, 10, 15, 30, 60, 90 |
| expiry (optional) |
Expiry date. Format: d/m/Y |
Example Response
{
"order": 23501
}
Order Status
Fetch the realtime status metrics of a specific order ID.
| Parameters |
Description |
| key |
Your API key |
| action |
status |
| order |
Order ID |
Example Response
{
"charge": "0.27819",
"start_count": "3572",
"status": "Partial",
"remains": "157",
"currency": "USD"
}
Multiple Status
Check statuses of multiple orders in a single API execution query.
| Parameters |
Description |
| key |
Your API key |
| action |
status |
| orders |
Order IDs separated by comma (e.g. 1,10,100) |
Example Response
{
"1": {
"charge": "0.27819",
"start_count": "3572",
"status": "Partial",
"remains": "157",
"currency": "USD"
},
"10": {
"error": "Incorrect order ID"
}
}
Create Refill
Trigger a manual refill request for a completed order.
| Parameters |
Description |
| key |
Your API key |
| action |
refill |
| order |
Order ID |
Example Response
{
"refill": "1"
}
Refill Status
Verify the progress status of a triggered refill request.
| Parameters |
Description |
| key |
Your API key |
| action |
refill_status |
| refill |
Refill request ID |
Example Response
{
"status": "Completed"
}
User Balance
Query the remaining balance statistics and currency information.
| Parameters |
Description |
| key |
Your API key |
| action |
balance |
Example Response
{
"balance": "100.84",
"currency": "USD"
}