SMM Panel API — PerfectPanel Compatible Reseller API

Connect your store to SSMM Panel with a PerfectPanel-compatible reseller API. Use services, add, status, balance and refill endpoints to automate orders.

Endpoint

POST https://www.ssmmpanel.com/api/v2

Content-Type: application/x-www-form-urlencoded

Authenticate with your API key from the dashboard. PerfectPanel-compatible actions:

action=services

List all services (id, name, type, category, rate, min, max, refill, cancel).

action=add

Place an order: service, link, quantity (+ comments, drip-feed, subscription fields).

action=status

Check order status with order id (or comma-separated orders).

action=balance

Return your current USD balance.

action=refill

Request a refill for order id, or comma-separated orders.

action=refill_status

Check refill status with refill id, or comma-separated refills.

action=cancel

Cancel one or more orders (orders=id1,id2).

Example curl
curl -X POST https://www.ssmmpanel.com/api/v2 \
  -d "key=YOUR_API_KEY" \
  -d "action=services"

curl -X POST https://www.ssmmpanel.com/api/v2 \
  -d "key=YOUR_API_KEY" \
  -d "action=add" \
  -d "service=1001" \
  -d "link=https://instagram.com/username" \
  -d "quantity=100"

curl -X POST https://www.ssmmpanel.com/api/v2 \
  -d "key=YOUR_API_KEY" \
  -d "action=status" \
  -d "order=ORDER_ID"

curl -X POST https://www.ssmmpanel.com/api/v2 \
  -d "key=YOUR_API_KEY" \
  -d "action=balance"

curl -X POST https://www.ssmmpanel.com/api/v2 \
  -d "key=YOUR_API_KEY" \
  -d "action=refill" \
  -d "order=ORDER_ID"

curl -X POST https://www.ssmmpanel.com/api/v2 \
  -d "key=YOUR_API_KEY" \
  -d "action=cancel" \
  -d "orders=ORDER_ID"