Get order

GET /api/v1/orders/:order_id tenant key

Fetches a single order by id (scoped to your account). Poll this for status + tracking after committing — order activity does NOT appear in the activity log, so this is the way to follow an order. Requires a real Order ID; set yours in the sidebar and press Run.

Try it GET /api/v1/orders/0

These inputs are shared across all docs pages, so an id entered here carries over.

response

Not run yet. Press Run to make a live call against https://service.rip.fun (through this demo's server-side proxy; the API key never reaches the browser).

curl (tracks the inputs above)
curl -X GET 'https://service.rip.fun/api/v1/orders/0' \
  -H 'X-API-Key: rip_…'

Response fields (data)

FieldDescription
order_id / statusOrder id + lifecycle status
unique_idsCards on the order
shipping_total_cents / sales_tax_cents / currencyPass-through shipping billed (the quoted amount) + tax + currency
carrier / carrier_service / shippo_rate_idCommitted carrier, service, and quoted rate id
shippo_tracking_number / shippo_tracking_url / shippo_label_urlPopulated once the warehouse buys the label + ships
previous_tracking_numbersTracking numbers of replaced labels, oldest first; [] unless the order was re-labelled
tracking_status / tracking_status_atLatest carrier status of the current label and its carrier timestamp; null until first checked
tracking_eventsGET /orders/:order_id only. The parcel’s history, oldest first: {type:"label_replaced", occurred_at, previous_tracking_number, tracking_number} when we re-labelled it, and {type:"carrier_scan", occurred_at, tracking_number, status, substatus, details, location} for each carrier scan
ship_by_at / label_purchased_at / created_at / updated_atLifecycle timestamps

Errors

StatusCodeWhen
400invalid order_idorder_id is not a positive integer
404order not foundorder not part of your account

See Errors for the response envelope and the full code list.