action=services
List all services (id, name, type, category, rate, min, max, refill, cancel).
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:
List all services (id, name, type, category, rate, min, max, refill, cancel).
Place an order: service, link, quantity (+ comments, drip-feed, subscription fields).
Check order status with order id (or comma-separated orders).
Return your current USD balance.
Request a refill for order id, or comma-separated orders.
Check refill status with refill id, or comma-separated refills.
Cancel one or more orders (orders=id1,id2).
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"