action=services
Listar todos os serviços (id, name, type, category, rate, min, max).
Conecte sua loja ao SSMM Panel com uma API compatível com PerfectPanel: endpoints de serviços, add, status e balance.
Endpoint
POST https://ssmmpanel.com/api/v2
Content-Type: application/x-www-form-urlencoded
Autentique com sua chave de API do painel. Ações compatíveis com PerfectPanel:
Listar todos os serviços (id, name, type, category, rate, min, max).
Criar um pedido: service, link, quantity (+ comments opcionais).
Consultar o status do pedido com o order id.
Retornar seu saldo atual em USD.
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"