For developers
API documents
If you have any questions or issues with linking the API to your site, please send them to the Support Ticket and the Programming and API Problems section for assistance.
You can use this API to use in Smart Panel and easily have your own site and earn money.
API hint
HTTP Method | POST |
---|---|
API URL | https://panel.smmflw.com/api/v2 |
API Key | Your API key Login |
Response format | JSON |
Services
Parameters | Description |
---|---|
key | Your API key Login |
action | services |
Example Response
[
{
"service": "3",
"name": "Service 1",
"category": "Category 1",
"min": "20",
"max": "30",
"desc": "Description 1",
"rate": "95200",
"type": "default",
"dripfeed": 0
},
{
"service": "9",
"name": "Service 2",
"category": "Category 22",
"min": "50",
"max": "100",
"desc": "Description 2",
"rate": "12000",
"type": "default",
"dripfeed": 0
}
]
Add order
Parameters | Description |
---|---|
key | Your API key Login |
action | add |
service | Service Id |
link | Link to page |
quantity | Needed quantity |
is_test(optional) | 0 = Not for test , 1 = For test |
Example Response
{
"status": "success",
"order": 151
}
Order status
Parameters | Description |
---|---|
key | Your API key Login |
action | status |
order | Order Id |
Example Response
{
"order": 1526,
"status": "Completed",
"charge": "5400",
"start_count": 300,
"remains": 0
}
Multiple orders status
Parameters | Description |
---|---|
api | Your API key Login |
action | status |
orders | Order IDs separated by comma (Example: 34,35,38) |
Example Response
{
"276801": {
"order": 276801,
"status": "processing",
"charge": "1015",
"start_count": 1526,
"remains": "Unknown"
},
"266094": {
"order": 266094,
"status": "Completed",
"charge": "10500",
"start_count": 1217,
"remains": 0
},
"266095": {
"error": "Incorrect order ID"
}
}
User balance
Parameters | Description |
---|---|
api | Your API key Login |
action | balance |
Example Response
{
"status": "success",
"balance": 12.3,
"currency": "USD"
}