/api/v1/orders/:order_id tenant keyFetches 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.
GET /api/v1/orders/0 These inputs are shared across all docs pages — an id entered here carries over.
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 -X GET 'https://service.rip.fun/api/v1/orders/0' \ -H 'X-API-Key: rip_…'
data)| Field | Description |
|---|---|
order_id / status | Order id + lifecycle status |
unique_ids | Cards on the order |
shipping_total_cents / sales_tax_cents / currency | Pass-through shipping billed (the quoted amount) + tax + currency |
carrier / carrier_service / shippo_rate_id | Committed carrier, service, and quoted rate id |
shippo_tracking_number / shippo_tracking_url / shippo_label_url | Populated once the warehouse buys the label + ships |
ship_by_at / label_purchased_at / created_at / updated_at | Lifecycle timestamps |
| Status | Code | When |
|---|---|---|
| 400 | invalid order_id | order_id is not a positive integer |
| 404 | order not found | no such order for this tenant |
See Errors for the response envelope and the full code list.