API Documentation
Integrate our SMM panel services into your own platform using our REST API.
API Overview
Base endpoint and connection details
HTTP Method
POST
API URL
https://farhansmm.com/api/v2
Return Format
JSON
1. Service List
Get all available services with pricing| Parameter | Value / Explanation |
|---|---|
| key | Your API Key |
| action | services |
Sample Response
[
{
"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"
}
]
2. New Order
Place a new order via API| Parameter | Explanation |
|---|---|
| key | Your API Key |
| action | add |
| service | Service ID |
| link | Link to the page |
| quantity | Quantity to order |
| runs (optional) | Runs to deliver |
| interval (optional) | Interval in minutes |
Sample Response
{
"order": 23501
}
3. Order Status
Check the status of an existing order| Parameter | Explanation |
|---|---|
| key | Your API Key |
| action | status |
| order | Order ID |
Sample Response
{
"charge": "0.27819",
"start_count": "3572",
"status": "Partial",
"remains": "157",
"currency": "USD"
}
4. User Balance
Check account balance via API| Parameter | Explanation |
|---|---|
| key | Your API Key |
| action | balance |
Sample Response
{
"balance": "100.84292",
"currency": "USD"
}