Connect with FastSMM.pk API
Use our API to fetch services, create new orders, check order status, and view your balance directly from your website, app, or automation system.
HTTP Method
All API requests should be sent using POST method.
API Endpoint
Use the API URL below to connect your system.
API Key
Your private API key is available on your account page.
JSON Format
All API responses are returned in JSON format.
API Information
Basic connection details for your integration.
https://fastsmm.pk/api/v2
| HTTP Method | POST |
| API URL | https://fastsmm.pk/api/v2 |
| Return Format | JSON |
Service List
Use this request to get all available services.
| Parameter | 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
Create a new order using service ID, link, and quantity.
| Parameter | Explanation |
|---|---|
| key | Your API Key |
| action | add |
| service | Service ID |
| link | Service link |
| quantity | Quantity |
| runs | Optional. Runs to deliver. |
| interval | Optional. Interval in minutes. |
Sample return
{
"order": 23501
}
Order Status
Check the current status, charge, start count, and remains of an order.
| 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
Check your current account balance and currency.
| Parameter | Explanation |
|---|---|
| key | Your API Key |
| action | balance |
Sample return
{
"balance": "100.84292",
"currency": "USD"
}
Sample PHP File