Skip to main content
GET
/
orders
List orders
curl --request GET \
  --url https://api.proxyjam.com/public/v1/orders \
  --header 'X-API-Key: <api-key>'
{
  "orders": [
    {}
  ],
  "total": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.proxyjam.com/llms.txt

Use this file to discover all available pages before exploring further.

Returns the user’s orders, sorted by creation date descending.

Query parameters

limit
integer
default:"50"
Number of results to return. Min 1, max 100.
offset
integer
default:"0"
Number of results to skip for pagination.
status
string
Filter by order status. One of: pending, pending_payment, active, failed, cancelled, expired.

Response

orders
array
List of order objects. Same shape as Create order response.
total
integer
Total number of orders matching the filter.

Example

curl "https://api.proxyjam.com/public/v1/orders?status=active&limit=10" \
  -H "X-API-Key: pj_AbCdEf..."