API Documentation

Integrate SEP Exchange with your own SMM panels and dashboards seamlessly.

Version: v1.0

Authentication

All API requests must pass your unique API Key via the Authorization or api_key parameter.

POST https://catslives.com/api/v1/balance Content-Type: application/json { "api_key": "your-secret-key-here" }

Create Order

Programmatically submit a link to the open marketplace. Deducts credits from your balance automatically.

POST https://catslives.com/api/v1/orders/create Content-Type: application/json { "api_key": "sk_test_...", "service_id": 301, // 301 = YouTube Subscribers "link": "https://youtube.com/@channel", "quantity": 500, "cpc": 10 // Cost Per Click (Credits) }

Successful Response

{ "success": true, "order_id": 92813, "cost": 5000, "message": "Order placed successfully." }