HTTP API for listing services, placing orders, checking status and balance.
All requests use POST (form-data or application/x-www-form-urlencoded).
https://smmpix.sbs/public/api/v2Pass your API key from Account → API as the key parameter on every request.
List available services.
curl -X POST https://smmpix.sbs/public/api/v2 \ -d "key=YOUR_API_KEY" \ -d "action=services"
Place a new order.
| Param | Required | Description |
|---|---|---|
key | Yes | API key |
action | Yes | add |
service | Yes | Service ID |
link | Yes | Target URL / username |
quantity | Yes | Order quantity |
curl -X POST https://smmpix.sbs/public/api/v2 \ -d "key=YOUR_API_KEY" \ -d "action=add" \ -d "service=1" \ -d "link=https://instagram.com/..." \ -d "quantity=1000"
Response example: {"order":12345}
Check one or more orders.
curl -X POST https://smmpix.sbs/public/api/v2 \ -d "key=YOUR_API_KEY" \ -d "action=status" \ -d "order=12345"
Multiple: orders=123,456
Get account balance and currency.
curl -X POST https://smmpix.sbs/public/api/v2 \ -d "key=YOUR_API_KEY" \ -d "action=balance"
Failed requests return JSON with an error string, e.g. invalid key, insufficient balance, or bad parameters.
API docs.