Endpoint URL: /api/user/getBalance
GET /api/user/getBalance?API=123
{
"status": 200,
"message": "Success",
"data": {
"balance": 100
}
}
Endpoint URL: /api/user/buyProxy?API=123
POST /api/user/buyProxy?API=123
{
"network": "Residential",
"value": 1
}
POST /api/user/buyProxy?API=123
{
"network": "Mobile",
"ports": "1",
"value": "1 Week",
"whitelist":"192.168.0.1"
}
{
"status": 200,
"message": "Order created!",
"code": "ABC123"
}
Endpoint URL: /api/user/extendProxy?API=123
POST /api/user/extendProxy?API=123
{
"network": "Residential",
"value": 1,
"id": "ABC123"
}
{
"status": 200,
"message": "Package extended!",
"code": "ABC123"
}
Endpoint URL: /api/orders/orderDetails?API=123
The request body should be empty.
POST /api/orders/orderDetails?API=123
{
"id": "ABC123"
}
{
"status": 200,
"data": {
"type": "Residential",
"expiry": "2023-06-30",
"info": {
"total": 100,
"remaining": 50,
"access": {
"host": "resi.sigmaproxies.com",
"port": "8080",
"username": "your_username",
"password": "your_password"
}
}
}
}
Endpoint URL: /api/user/Whitelist?API=123
POST /api/user/Whitelist?API=123
{
"id": "ABC123",
"ip": "192.168.0.1"
}
{
"status": 200,
"message": "Whitelist successful!"
}
If the IP is still locked, the response will be:
{
"status": 400,
"message": "IP locked till 2023-06-30 18:00:00"
}