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
Please Log In to view your secret API key.

Service List

Parameters
ParameterDescription
keyYour API key
actionservices
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
ParameterDescription
keyYour API key
actionadd
serviceService ID
linkLink to the page/post
quantityNeeded quantity
Example Response (Success)
{
  "order": 12345
}
Example Response (Error)
{
  "error": "Incorrect request"
}

Order Status

Parameters
ParameterDescription
keyYour API key
actionstatus
orderOrder ID
Example Response
{
  "charge": "0.2780",
  "start_count": "3572",
  "status": "Partial",
  "remains": "157",
  "currency": "USD"
}

Multiple Orders Status

Parameters
ParameterDescription
keyYour API key
actionorders
ordersOrder 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
ParameterDescription
keyYour API key
actionbalance
Example Response
{
  "balance": "100.05",
  "currency": "USD"
}