Skip to main content
GET
/
orders
/
{order_id}
Get order
curl --request GET \
  --url https://api.proxyjam.com/public/v1/orders/{order_id} \
  --header 'X-API-Key: <api-key>'

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 full details for a single order, including proxy credentials if the order is active.

Path parameters

order_id
string
required
UUID of the order.

Response

Same shape as Create order response.
You can only retrieve orders that belong to your account. Requesting another user’s order returns 403 Forbidden.
Mobile rotating orders return a different shape — a live snapshot fetched from the upstream provider on each request. The response carries "type": "mobile" and mobile-specific fields (signature, tags, current_ip). The Python SDK dispatches automatically: client.orders.get() returns either an Order or a MobileProxy based on the response shape.

Example

curl https://api.proxyjam.com/public/v1/orders/order-uuid-here \
  -H "X-API-Key: pj_AbCdEf..."