SSMM Panel
Iniciar sesiónRegistrarse

API del panel SMM — API para revendedores compatible con PerfectPanel

Conecta tu tienda a SSMM Panel con una API compatible con PerfectPanel: endpoints de servicios, add, status y balance.

Endpoint

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

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

Autentícate con tu clave API del panel. Acciones compatibles con PerfectPanel:

action=services

Listar todos los servicios (id, name, type, category, rate, min, max).

action=add

Crear un pedido: service, link, quantity (+ comments opcionales).

action=status

Consultar el estado del pedido con el order id.

action=balance

Devolver tu saldo actual en USD.

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

curl -X POST https://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://ssmmpanel.com/api/v2 \
  -d "key=YOUR_API_KEY" \
  -d "action=status" \
  -d "order=ORDER_ID"

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