API Documentation
Integrate with our panel using the REST API
API Endpoint
POST https://smm.wtf/api/v2
Include your API key in every request. Find it in Account Settings.
Services List
services| Parameter | Description |
|---|---|
key | Your API key |
action | services |
Response
[{"service":1,"name":"Instagram Followers","rate":"0.50","min":100,"max":10000}]
Add Order
add| Parameter | Description |
|---|---|
key | API key |
action | add |
service | Service ID |
link | Target URL |
quantity | Order quantity |
Response
{"order": 12345}
Order Status
status| Parameter | Description |
|---|---|
key | API key |
action | status |
order | Order ID (single) |
orders | Comma-separated IDs (up to 100) |
Response
{"charge":"0.50","start_count":0,"status":"Completed","remains":0}
Balance
balance| Parameter | Description |
|---|---|
key | API key |
action | balance |
Response
{"balance":"100.00","currency":"USD"}
Cancel
cancel| Parameter | Description |
|---|---|
key | API key |
action | cancel |
orders | Comma-separated IDs |
Response
[{"order":1,"cancel":{"error":false}}]
Refill
refill| Parameter | Description |
|---|---|
key | API key |
action | refill |
order | Order ID |
Response
{"refill": 1}
Quick Start
- Register an account
- Get your API key
- Send POST requests
- Include
key+action
cURL Example
curl -X POST \
https://smm.wtf/api/v2 \
-d "key=YOUR_KEY" \
-d "action=services"