Soxway Docs
Account

Top up traffic balance

Purchase traffic balance using your account USD balance. Traffic is allocated per proxy type.

POST
/reseller/topup-traffic

Authorization

bearerAuth
AuthorizationBearer <token>

Access token obtained via POST /reseller/access-token using your Reseller Key

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://api.soxway.io/reseller/topup-traffic" \  -H "Content-Type: application/json" \  -d '{    "amount_gb": 10,    "proxy_type": "residential"  }'
{
  "message": "string",
  "data": {
    "proxy_type": "string",
    "traffic_balance_gb": 0,
    "amount_added_gb": 0,
    "cost": 0
  }
}
Empty