Get Order Details
Order API
Get Order Details
Retrieve the raw stored order records for the authenticated user or organization.
GET
Get Order Details
Retrieve the raw order records (as stored in the database) for every non-expired order belonging to the authenticated user or organization.
Unlike List Orders, this returns database documents directly and does not contact the proxy servers, so no live proxy IP lists are included.
This endpoint takes no parameters.
Request
Headers
| Header | Value | Required |
|---|---|---|
Authorization | Bearer {your_api_key} | Yes |
Example Request
Response
Success Response
Response Fields
Status of the request.
Array of raw order documents as stored in the database.
Order Document Fields
| Field | Type | Description |
|---|---|---|
_id | string | Internal database document ID |
email | string | Email of the account the order belongs to |
customer_discord_id | string | Discord ID associated with the customer (if any) |
product_id | string | Product type identifier |
product_category | string | Category (e.g., datacenter, residential) |
product_name | string | Human-readable product name |
quantity | integer | Number of proxies |
iso_purchase_date | string | Purchase date in ISO YYYY-MM-DD format |
iso_expiration_date | string | Expiration date in ISO YYYY-MM-DD format |
order_id | string | Unique order identifier |
datacenter_details | object | Datacenter proxy credentials (proxy_username, proxy_password, proxy_port) for datacenter orders |
Notes
- This endpoint does not call the proxy servers, so it returns no live IP lists. Use Get Order or List Orders with
include_proxies=truefor live proxy details. - Only non-expired orders are returned.
Related Endpoints
List Orders
List orders with live proxy details.
Get Order
Fetch live proxy details for a single order.
