ES24 MEDIA

API Documentation

Our reseller API follows the standard SMM v2 convention. Any panel that supports a standard provider API can connect using your API URL and key.

https://es24.in/api/v2
HTTP Method: POST · Response format: JSON · Auth: key parameter (generate in the API page).
Service list
ParameterDescription
keyYour API key
actionservices
Example response
[{ "service": 1, "name": "Instagram Followers", "type": "default", "category": "Instagram", "rate": "2.5000", "min": "100", "max": "100000", "refill": true, "cancel": true }]
Add order
ParameterDescription
keyYour API key
actionadd
serviceService ID
linkTarget link
quantityQuantity
runs(optional) runs
interval(optional) interval
comments(optional) comments
Example response
{ "order": 23501 }
Order status
ParameterDescription
keyYour API key
actionstatus
orderOrder ID
Example response
{ "charge": "1.0000", "start_count": "1200", "status": "Completed", "remains": "0", "currency": "USD" }
Mass status
ParameterDescription
keyYour API key
actionstatus
orders1,2,3
Example response
{ "1": {"status":"Completed","remains":"0"}, "2": {"error":"Incorrect order ID"} }
Refill
ParameterDescription
keyYour API key
actionrefill
orderOrder ID
Example response
{ "refill": 12345 }
Refill status
ParameterDescription
keyYour API key
actionrefill_status
refillRefill ID
Example response
{ "status": "Completed" }
Cancel
ParameterDescription
keyYour API key
actioncancel
orderOrder ID
Example response
{ "success": "We will attempt to cancel this order." }
Balance
ParameterDescription
keyYour API key
actionbalance
Example response
{ "balance": "100.5000", "currency": "USD" }
cURL example
curl -X POST "https://es24.in/api/v2" \ -d "key=YOUR_API_KEY" \ -d "action=add" \ -d "service=1" \ -d "link=https://instagram.com/username" \ -d "quantity=1000"