| HTTP Method | POST |
| API URL | https://khmer-smm.com/api/v2 |
| API Key | Get an API key on the Account page |
| Response Format | JSON |
| Parameters | Description |
|---|---|
| key | Your API key |
| action | services |
Example Response
[
{
"service": 1,
"name": "Followers",
"type": "Default",
"category": "First Category",
"rate": "0.90",
"min": "50",
"max": "10000",
"refill": true,
"cancel": true
},
{
"service": 2,
"name": "Comments",
"type": "Custom Comments",
"category": "Second Category",
"rate": "8",
"min": "10",
"max": "1500",
"refill": false,
"cancel": true
}
]
| Parameters | Description |
|---|---|
| key | Your API key |
| action | status |
| id | Order ID |
Example Response
{
"status": 1,
"message": "Order successfully completed"
}
| Parameters | Description |
|---|---|
| key | Your API key |
| action | orders |
Example Response
[
{
"id": 1,
"service": 2,
"link": "https://example.com",
"quantity": 100,
"status": "Completed"
},
{
"id": 2,
"service": 5,
"link": "https://another-example.com",
"quantity": 200,
"status": "Pending"
}
]
| Parameters | Description |
|---|---|
| key | Your API key |
| action | cancel |
| id | Order ID |
Example Response
{
"status": 1,
"message": "Order successfully canceled"
}