API Documentation

API Documentation

Your API Details

Loading your API key...

API Endpoints

Services List

Fetch a list of all available services.

Action: services

Method: GET or POST

Parameters

key Your API Key.

Example Request

.../exec?key=YOUR_API_KEY&action=services

Place Order

Place a new order.

Action: add

Method: GET or POST

Parameters

keyYour API Key.
serviceThe Service ID.
linkThe target link for the order.
quantityThe quantity to order.

Example Request

.../exec?key=YOUR_API_KEY&action=add&service=101&link=http://example.com&quantity=1000

Success Response

{ "order": "ORDER_ID" }

Order Status

Check the status of a specific order.

Action: status

Method: GET or POST

Parameters

keyYour API Key.
orderThe Order ID you received when placing the order.

Example Request

.../exec?key=YOUR_API_KEY&action=status&order=12345

Success Response

{ "status": "Completed", "start_count": "0", "remains": "0", "currency": "PKR" }

Balance Check

Check your account balance.

Action: balance

Method: GET or POST

Parameters

keyYour API Key.

Example Request

.../exec?key=YOUR_API_KEY&action=balance

Success Response

{ "balance": "1234.56", "currency": "PKR" }