Skip to main content
GET
https://dashboard.statproxies.com
/
api
/
v2
/
account
/
fetch
/
all
/
{customer_id}
Get Active Orders
curl --request GET \
  --url https://dashboard.statproxies.com/api/v2/account/fetch/all/{customer_id}
{
  "order": [
    {}
  ]
}
Fetch all active orders for a specific customer, including full proxy lists.

Request

Headers

HeaderValueRequired
AuthorizationBearer {your_api_key}Yes

Path Parameters

customer_id
string
required
The customer’s Discord ID or identifier.

Example Request

curl -X GET "https://dashboard.statproxies.com/api/v2/account/fetch/all/123456789012345678" \
  -H "Authorization: Bearer {your_api_key}"

Response

Success Response

{
  "order": [
    {
      "_id": "64abc123def456789",
      "email": "[email protected]",
      "customer_discord_id": "123456789012345678",
      "product_id": "captcha",
      "product_name": "Captcha Proxies",
      "quantity": 10,
      "order_status": "active",
      "unix_purchase_date": 1753815092,
      "unix_expiration_date": 1756493492,
      "datacenter_details": {
        "proxy_username": "sub_1rqjp3jb4g9i6pkhdwmkpjob",
        "proxy_password": "stat261",
        "proxy_port": 3128,
        "proxy_list": "31.193.191.6:3128:sub_1rqjp3jb4g9i6pkhdwmkpjob:stat261\n31.193.191.7:3128:sub_1rqjp3jb4g9i6pkhdwmkpjob:stat261"
      }
    }
  ]
}

Response Fields

order
array
Array of active order objects with proxy details.

Order Object Fields

FieldTypeDescription
_idstringMongoDB document ID
emailstringCustomer’s email address
customer_discord_idstringCustomer’s Discord ID
product_idstringProduct type identifier
product_namestringHuman-readable product name
quantityintegerNumber of proxies
order_statusstringStatus (always “active” for this endpoint)
unix_purchase_dateintegerPurchase timestamp
unix_expiration_dateintegerExpiration timestamp
datacenter_detailsobjectProxy credentials and list

Datacenter Details Object

FieldTypeDescription
proxy_usernamestringAuthentication username
proxy_passwordstringAuthentication password
proxy_portintegerProxy port number
proxy_liststringNewline-separated list of proxies

Error Responses

503 Service Unavailable

{
  "error": "user_order_not_found"
}

Proxy List Format

The proxy_list field contains proxies in the format:
ip:port:username:password
Each proxy is separated by a newline character (\n).

Example Parsing (JavaScript)

const proxies = response.order[0].datacenter_details.proxy_list.split('\n');
// ["31.193.191.6:3128:username:password", "31.193.191.7:3128:username:password"]

Difference from Order History

EndpointActive OnlyIncludes Proxy List
Get Order HistoryNo (all orders)No
Get Active OrdersYesYes

Use Case

This endpoint is ideal for:
  • Retrieving ready-to-use proxy lists for a customer
  • Automated proxy distribution systems
  • Building customer-facing proxy management tools