API Documentation
Connect your own application, child panel or script with our panel using a single HTTP POST endpoint.
POST
https://www.demo.smartrentalbd.com/api/v2
Connection Details
Base info required for every request.
| HTTP Method | POST |
| API URL | https://www.demo.smartrentalbd.com/api/v2 |
| Return format | JSON |
Service List
Fetch every service with rate, min and max limits.
| parameters | Explanation |
|---|---|
| key | Your API Key |
| action | services |
Sample return
[
{
"service": 1,
"name": "Followers",
"type": "Default",
"category": "First Category",
"rate": "0.90",
"min": "50",
"max": "10000"
},
{
"service": 2,
"name": "Comments",
"type": "Custom Comments",
"category": "Second Category",
"rate": "8",
"min": "10",
"max": "1500"
}
]
New Order
Place a new order through the API.
| Parameter | Explanation |
|---|---|
| key | Your API Key |
| action | add |
| service | Servis ID |
| link | Service connection |
| quantity | Quantity |
| runs (optionally) | Runs to deliver |
| interval (optionally) | Interval in minutes |
Sample return
{
"order": 23501
}
Order Status
Check charge, start count and remaining quantity.
| Parameter | Explanation |
|---|---|
| key | Your API Key |
| action | status |
| order | Order ID |
Sample return
{
"charge": "0.27819",
"start_count": "3572",
"status": "Partial",
"remains": "157",
"currency": "USD"
}
User Balance
Read the current balance of your account.
| Parameter | Explanation |
|---|---|
| key | Your API Key |
| action | balance |
Sample return
{
"balance": "100.84292",
"currency": "USD"
}