Get Customer Orders
Order API
Get Customer Orders
Retrieve all orders and proxy details for a specific customer ID.
GET
Get Customer Orders
Retrieve all orders associated with a specific customer ID, including proxy details.
Request
Headers
| Header | Value | Required |
|---|---|---|
Authorization | Bearer {your_api_key} | Yes |
Path Parameters
The customer ID to search for. Must be lowercase letters only (a-z).
Example Request
Response
Success Response
Response Fields
Status of the request.
The customer ID that was searched.
Total number of orders found for this customer.
Array of order objects with proxy details.
Order Object Fields
| Field | Type | Description |
|---|---|---|
order_id | string | Unique order identifier |
subscription_id | string | Stripe subscription ID |
product_type | string | Product type identifier |
product_name | string | Human-readable product name |
quantity | integer | Number of proxies |
unix_purchase_date | integer | Purchase timestamp |
unix_expiration_date | integer | Expiration timestamp |
proxy_username | string | Proxy authentication username |
proxy_password | string | Proxy authentication password |
customer | string | Customer identifier |
proxies | array | List of proxy strings |
Error Responses
400 Bad Request - Invalid Customer ID
404 Not Found - No Orders
Use Case
The customer ID feature is useful for:- Resellers: Track orders for specific clients
- Enterprises: Organize proxies by department or project
- Automation: Programmatically manage proxies per customer
customer parameter to tag orders for later retrieval using this endpoint.
