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
| Parameter | Description |
|---|---|
key | Your API key |
action | services |
Example response
[{
"service": 1,
"name": "Instagram Followers",
"type": "default",
"category": "Instagram",
"rate": "2.5000",
"min": "100",
"max": "100000",
"refill": true,
"cancel": true
}]
Add order
| Parameter | Description |
|---|---|
key | Your API key |
action | add |
service | Service ID |
link | Target link |
quantity | Quantity |
runs | (optional) runs |
interval | (optional) interval |
comments | (optional) comments |
Example response
{
"order": 23501
}
Order status
| Parameter | Description |
|---|---|
key | Your API key |
action | status |
order | Order ID |
Example response
{
"charge": "1.0000",
"start_count": "1200",
"status": "Completed",
"remains": "0",
"currency": "USD"
}
Mass status
| Parameter | Description |
|---|---|
key | Your API key |
action | status |
orders | 1,2,3 |
Example response
{
"1": {"status":"Completed","remains":"0"},
"2": {"error":"Incorrect order ID"}
}
Refill
| Parameter | Description |
|---|---|
key | Your API key |
action | refill |
order | Order ID |
Example response
{
"refill": 12345
}
Refill status
| Parameter | Description |
|---|---|
key | Your API key |
action | refill_status |
refill | Refill ID |
Example response
{
"status": "Completed"
}
Cancel
| Parameter | Description |
|---|---|
key | Your API key |
action | cancel |
order | Order ID |
Example response
{
"success": "We will attempt to cancel this order."
}
Balance
| Parameter | Description |
|---|---|
key | Your API key |
action | balance |
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"