SMM SMS CAPTCHA
One account, one wallet, one API key (clario + hex). Upstream vendor keys/balances are never exposed.
BASE URL
https://smm.apicloud.my.id
API KEY
clario + 48 hex · Dashboard → API tab
1) SMM — Perfect Panel /api/v2
POST https://smm.apicloud.my.id/api/v2
balance
curl -X POST "BASE/api/v2" -d "key=***&action=balance"
services
curl -X POST "BASE/api/v2" -d "key=***&action=services"
Names/categories are normalized to clear English. Includes platform.
add / status
curl -X POST "BASE/api/v2" -d "key=***&action=add&service=ID&link=URL&quantity=100" curl -X POST "BASE/api/v2" -d "key=***&action=status&order=12"
2) SMM web helpers
| Method | Path | Notes |
|---|---|---|
| GET | /api/services?platform=Instagram | English catalog + platforms |
| POST | /api/orders | Single order (session) |
| POST | /api/orders/batch | Mass order max 50 |
curl -X POST BASE/api/orders/batch -H 'Content-Type: application/json' -b 'smm_session=...' \
-d '{"orders":[{"service":105853,"link":"https://x","quantity":100},{"service":105853,"link":"https://y","quantity":200}]}'
3) SMS
Dashboard tab SMS · rent number → wait for OTP code · cancel refunds if unused.
GET /api/sms/services
GET /api/sms/countries?service=telegram
POST /api/sms/order {"service":"telegram","country":"US"}
GET /api/sms/orders
GET /api/sms/orders/{id}
POST /api/sms/orders/{id}/cancel
# example
curl -X POST BASE/api/sms/order -H 'Content-Type: application/json' -b 'cookie' \
-d '{"service":"telegram","country":"US"}'
4) Captcha
Dashboard tab Captcha · Turnstile / reCAPTCHA v2/v3 / hCaptcha / image.
GET /api/captcha/types
POST /api/captcha/solve
GET /api/captcha/tasks
GET /api/captcha/tasks/{id}
curl -X POST BASE/api/captcha/solve -H 'Content-Type: application/json' -b 'cookie' \
-d '{"type":"turnstile","sitekey":"0x4...","pageurl":"https://example.com"}'
Response includes task status + token when ready. Failed hard errors refund automatically.
5) Auth & security
- Register/login: Cloudflare Turnstile
- Email verify: OTP + magic link before API key unlock
- API key format:
clario…(no vendor keys) - Deposit: min $5 · TXID goes to review (no auto-credit on fake TX)
- Admin credit only via protected admin endpoint
Dashboard map
| Tab | Use |
|---|---|
| SMM | Catalog (English, by platform) |
| Order | Single SMM order |
| Batch | Mass SMM orders |
| SMS | Rent numbers + OTP |
| Captcha | Solve captchas |
| History | SMM order history |
| Top Up | Crypto deposit |
| API | Your clario… key |