راهاندازی PerfectPanel
https://smmradical.com/api/v2
- Providers → Add Provider
- آدرس API را وارد کنید (باید به /api/v2 ختم شود)
- کلید API را از ربات کپی کنید
- ذخیره و سپس Sync services
احراز هویت
| Field | Where | Example |
|---|---|---|
key | query · form · JSON | ?key=YOUR_API_KEY |
X-Api-Key | HTTP header | X-Api-Key: YOUR_API_KEY |
GETPOST action: services
Returns a JSON array. All values are strings.
| Field | Type | Req |
|---|---|---|
key | string | yes |
action | string | services |
curl 'https://smmradical.com/api/v2?key=YOUR_API_KEY&action=services'
[
{
"service": "1",
"name": "Telegram Channel Members",
"type": "Default",
"category": "Telegram",
"rate": "0.9000",
"min": "100",
"max": "100000",
"refill": "0",
"cancel": "1",
"dripfeed": "0",
"desc": "...",
"description": "...",
"brand": "Telegram"
}
]
GETPOST action: balance
curl 'https://smmradical.com/api/v2?key=YOUR_API_KEY&action=balance'
{"balance":"125.4300","currency":"USD"}
GETPOST action: add
هزینه = نرخ × تعداد / 1000
| Field | Req |
|---|---|
service | yes |
link | yes |
quantity | yes |
curl -X POST 'https://smmradical.com/api/v2' \ -d 'key=YOUR_API_KEY' -d 'action=add' -d 'service=1' \ -d 'link=https://t.me/+abc' -d 'quantity=1000'
{"order":4815}
GETPOST action: status
One or many orders (up to 100).
curl 'https://smmradical.com/api/v2?key=YOUR_API_KEY&action=status&order=4815'
{"charge":"0.9000","start_count":"0","status":"In progress","remains":"350","currency":"USD"}
GETPOST action: cancel
Unfilled remainder is refunded.
curl 'https://smmradical.com/api/v2?key=YOUR_API_KEY&action=cancel&orders=4815,4816'
{"4815":{"order":4815,"cancel":true}}
وضعیتها
Pending
accepted, not started
accepted, not started
Processing
queued
queued
In progress
delivering
delivering
Completed
fully delivered
fully delivered
Partial
auto-refunded
auto-refunded
Canceled
auto-refunded
auto-refunded
خطاها
HTTP 200 + {"error":"..."}
| Error | When |
|---|---|
Invalid API key | missing or unknown key |
Invalid action | unknown action |
incorrect data | missing field |
incorrect service | unknown service |
incorrect quantity | out of range |
not enough funds on balance | balance < charge |
Incorrect order ID | order not found |
not supported | refill not implemented |
internal error | retry safely |
عیبیابی
Diagnostic echo URL:
https://smmradical.com/api/v2/echo
Key aliases: key, apikey, api_key, token, X-Api-Key, Authorization Bearer.
Action aliases: action, type, method, op.