Clario

Clario Service API

SMM · SMS · Captcha
← Panel API

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

MethodPathNotes
GET/api/services?platform=InstagramEnglish catalog + platforms
POST/api/ordersSingle order (session)
POST/api/orders/batchMass 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

Dashboard map

TabUse
SMMCatalog (English, by platform)
OrderSingle SMM order
BatchMass SMM orders
SMSRent numbers + OTP
CaptchaSolve captchas
HistorySMM order history
Top UpCrypto deposit
APIYour clario… key