The guest page documents the real request structure for the currently implemented API. Sign up to reveal your private token, then use these same payloads against the base URL below.
API URL
https://cheapsmmpanel.com/api/v2
Method
POST
Authentication
`api_token` parameter
Use this request to place a new order. For packages with custom comments enabled, send `custom_data` as newline-separated values and make sure the number of lines matches the quantity.
Request fields
Example response
{
"order": 23501
}
Fetch the current state of a single order by sending the order ID returned from the create-order response.
Request fields
Example response
{
"status": "Completed",
"start_counter": "600",
"remains": "600"
}
This uses the same `status` action as single-order status, but you send `orders` with comma-separated order IDs instead of `order`.
Request fields
Example response
{
"1": {
"charge": "0.27819",
"status": "Partial",
"start_counter": "3572",
"remains": "157"
},
"10": {
"error": [
"Order Not found"
]
},
"100": {
"charge": "1.44219",
"status": "In progress",
"start_counter": "234",
"remains": "10"
}
}
Read the currently available packages to sync service IDs, categories, pricing, minimums, and maximums into your own system.
Request fields
Example response
[
{
"service": 1,
"name": "Instagram Followers",
"type": "Default",
"category": "First Category",
"rate": "0.30",
"min": "50",
"max": "10000"
},
{
"service": 2,
"name": "Instagram Likes",
"type": "Default",
"category": "Second Category",
"rate": "0.03",
"min": "50",
"max": "1000"
}
]
Use this request to read the funds available on your reseller account before sending new orders.
Request fields
Example response
{
"balance": "100.84292",
"currency": "USD"
}


