Developer API

Panel Orders API

Browse services and submit wallet-funded Panel orders. Authenticate every request using your customer API key.

Authentication

Authorization: Bearer YOUR_API_KEY
GET /api/v1/panel/services

List available services with selling prices and limits.

GET /api/v1/panel/services/{serviceId}

Get service details and compatible extras.

GET /api/v1/panel/extras

List available extras.

GET /api/v1/panel/orders

List your Panel orders.

POST /api/v1/panel/orders

Make an order and pay from your wallet.

GET /api/v1/panel/orders/{id}

Get local and Panel order details.

POST /api/v1/panel/orders/{id}/cancel

Request cancellation for an eligible order.

Create Order Payload

{
  "service": 101,
  "quantity": 10,
  "links": "https://example.com",
  "extras": [5, 8],
  "keywords": "optional keywords",
  "notes": "optional notes"
}