Get order
Orders
Get order
Retrieve the details of a specific order.
GET
Get order
Returns full details for a single order, including proxy credentials if the order is active.
Path parameters
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 flat live-snapshot shape, fetched
from the upstream provider on each request. The response carries
"type": "mobile" and a superset of fields: the live state
(signature, tags, current_ip, status) plus durable order
metadata (country, city, isp, period_days, total_usd,
created_at, …).Two fields look similar but mean different things:
status is the live proxy state (e.g. "active") reported by the
provider on this request; order_status is the order lifecycle
value (e.g. "provisioned").The Python SDK dispatches automatically: proxyjam.orders.get() returns
either an Order or a MobileProxy based on the response shape.