API Documentation
Integrate your own tools and scripts with our services using a standard SMM panel API.
| HTTP Method | POST |
|---|---|
| API URL | https://smmbott.com/api/v2.php |
| Response format | JSON |
Your API key is available from your account page. — →
Services list
| Parameter | Description |
|---|---|
| key | Your API key |
| action | services |
Example response:
[{"service":1,"name":"Followers","type":"Default","category":"Category","rate":"0.90","min":"50","max":"10000","refill":true,"cancel":true}]
Add order
| Parameter | Description |
|---|---|
| key | Your API key |
| action | add |
| service | Service ID |
| link | Link to page |
| quantity | Needed quantity |
Example response:
{"order":23501}
Order status
| Parameter | 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 orders status
| Parameter | Description |
|---|---|
| key | Your API key |
| action | status |
| orders | Order IDs, comma-separated |
Example response:
{"1":{"charge":"0.27819","start_count":"3572","status":"Partial","remains":"157","currency":"USD"}}
Create refill
| Parameter | Description |
|---|---|
| key | Your API key |
| action | refill |
| order | Order ID |
Example response:
{"refill":"1"}
Multiple refill
| Parameter | Description |
|---|---|
| key | Your API key |
| action | refill |
| orders | Order IDs, comma-separated |
Example response:
[{"order":1,"refill":1},{"order":2,"refill":{"error":"Incorrect order ID"}}]
Refill status
| Parameter | Description |
|---|---|
| key | Your API key |
| action | refill_status |
| refill | Refill ID |
Example response:
{"status":"Completed"}
Cancel orders
| Parameter | Description |
|---|---|
| key | Your API key |
| action | cancel |
| orders | Order IDs, comma-separated |
Example response:
[{"order":9,"cancel":{"error":"Incorrect order ID"}},{"order":2,"cancel":1}]
Account balance
| Parameter | Description |
|---|---|
| key | Your API key |
| action | balance |
Example response:
{"balance":"100.84292","currency":"USD"}