API Navigation
API Documentation
Our API is fully compatible with standard SMM Panel software. You can connect your panel to ours to automate your order processing.
HTTP Method: POST
API URL: https://smmuae.co/api/v2/index.php
Response Format: JSON
API URL: https://smmuae.co/api/v2/index.php
Response Format: JSON
Please Log In to view your secret API key.
Service List
Parameters
| Parameter | Description |
|---|---|
key | Your API key |
action | services |
Example Response
[
{
"service": 1,
"name": "Instagram Followers [Max: 10K]",
"type": "Default",
"category": "Instagram - Followers",
"rate": "0.90",
"min": 100,
"max": 10000,
"refill": true,
"cancel": false
}
]
Add Order
Parameters
| Parameter | Description |
|---|---|
key | Your API key |
action | add |
service | Service ID |
link | Link to the page/post |
quantity | Needed quantity |
Example Response (Success)
{
"order": 12345
}
Example Response (Error)
{
"error": "Incorrect request"
}
Order Status
Parameters
| Parameter | Description |
|---|---|
key | Your API key |
action | status |
order | Order ID |
Example Response
{
"charge": "0.2780",
"start_count": "3572",
"status": "Partial",
"remains": "157",
"currency": "USD"
}
Multiple Orders Status
Parameters
| Parameter | Description |
|---|---|
key | Your API key |
action | orders |
orders | Order IDs separated by comma (e.g., 1,2,3) |
Example Response
{
"1": {
"charge": "0.2780",
"start_count": "3572",
"status": "Partial",
"remains": "157",
"currency": "USD"
},
"10": {
"error": "Incorrect order ID"
},
"100": {
"charge": "1.4400",
"start_count": "234",
"status": "In Progress",
"remains": "10",
"currency": "USD"
}
}
User Balance
Parameters
| Parameter | Description |
|---|---|
key | Your API key |
action | balance |
Example Response
{
"balance": "100.05",
"currency": "USD"
}