Order status

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

Fetches a single tenant order by id (scoped to your tenant). Requires a TENANT API key — set yours in the sidebar and enter a real Order ID, then Run (it does not preload). Poll this for status + tracking after committing an order.

Try it GET /api/v1/orders/0

These inputs are shared across all docs pages — 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
ship_by_at / label_purchased_at / created_at / updated_atLifecycle timestamps

Errors

StatusCodeWhen
400invalid order_idorder_id is not a positive integer
404order not foundno such order for this tenant

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