Reseller API Documentation
Integrate our services directly into your own platform.
Authentication
All requests must be made via POST to our API endpoint and include your unique API Key in the JSON body.
ENDPOINT: http://your-domain.com/resslers/api/reseller.php
1. Get Account Balance
POSTRequest Body
{
"api_key": "YOUR_API_KEY",
"action": "get_balance"
}
Response Example
{
"success": true,
"data": {
"username": "reseller_pro",
"balance": 500.25,
"currency": "USD"
}
}
2. Get Services (Sync)
POSTRequest Body
{
"api_key": "YOUR_API_KEY",
"action": "get_services"
}
Response Example
{
"success": true,
"data": [
{
"id": 1,
"name": "Pixel Registration",
"price": 51.42,
"category": "Pixel Tools"
}
]
}
3. Place New Order
POSTRequest Body
{
"api_key": "YOUR_API_KEY",
"action": "place_order",
"service_id": 1,
"input": "user@example.com",
"notes": "Fast track please"
}
Response Example
{
"success": true,
"message": "Order placed successfully",
"order_id": 1245
}
© 2026 PixelUnlocker Pro Edition - Standard JSON REST API