/api/v1/orders tenant keyLists this tenant's orders, newest first. Requires a TENANT API key — the staging demo key is a mystery-partner key and 403s, so this does not preload; set your tenant key in the sidebar and press Run. Optional ?status= filter; standard ?limit/?offset paging with has_more.
GET /api/v1/orders?limit=10 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?limit=10' \ -H 'X-API-Key: rip_…'
| Field | Type | Required | Description |
|---|---|---|---|
status | query string | — | Filter by order status, e.g. PENDING_PAYMENT, CANCELLED |
limit / offset | query int | — | Pagination — has_more signals another page |
data)| Field | Description |
|---|---|
orders[] | Serialized tenant orders (same shape as GET /orders/:order_id) |
pagination.limit / offset / has_more | Echoed paging + whether more rows exist |
| Status | Code | When |
|---|---|---|
| 403 | Tenant API key required | key is not tenant-scoped (e.g. a mystery-partner key) |
See Errors for the response envelope and the full code list.