S SMM Panel

API Documentation

HTTP API for listing services, placing orders, checking status and balance.

Endpoint

All requests use POST (form-data or application/x-www-form-urlencoded).

https://smmpix.sbs/public/api/v2

Authentication

Pass your API key from Account → API as the key parameter on every request.

action

services

List available services.

curl -X POST https://smmpix.sbs/public/api/v2 \
  -d "key=YOUR_API_KEY" \
  -d "action=services"
action

add

Place a new order.

ParamRequiredDescription
keyYesAPI key
actionYesadd
serviceYesService ID
linkYesTarget URL / username
quantityYesOrder 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}

action

status

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

action

balance

Get account balance and currency.

curl -X POST https://smmpix.sbs/public/api/v2 \
  -d "key=YOUR_API_KEY" \
  -d "action=balance"

Errors

Failed requests return JSON with an error string, e.g. invalid key, insufficient balance, or bad parameters.

API docs.