Skip to main content
Build integrations that automate proxy management for your applications.
https://dashboard.statproxies.com/api/v2/

Capabilities

Quick start

1

Get your API key

Navigate to Settings → API Keys in your dashboard
2

Make a request

curl -X GET "https://dashboard.statproxies.com/api/v2/order/list" \
  -H "Authorization: Bearer YOUR_API_KEY"
3

Parse the response

{
  "response": "success",
  "summary": { "total_orders": 3, "total_proxies": 30 },
  "orders": [...]
}

Endpoints

EndpointMethodDescription
/order/newscalePOSTCreate a new order
/order/listGETList all active orders
/order/fetch/:order_idGETGet order with proxies
/order/fetch/customer/:idGETGet orders by customer
/order/delete/:sub_id/:prod_idDELETECancel an order
/order/exchange/:order_idPOSTExchange proxies

Response format

// Success
{
  "response": "success",
  "data": { ... }
}

// Error
{
  "response": "error",
  "message": "Description of the error"
}

Next steps