List orders

GET /api/v1/orders tenant key

Lists 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.

Try it GET /api/v1/orders?limit=10

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?limit=10' \
  -H 'X-API-Key: rip_…'

Request fields

FieldTypeRequiredDescription
statusquery stringFilter by order status, e.g. PENDING_PAYMENT, CANCELLED
limit / offsetquery intPagination — has_more signals another page

Response fields (data)

FieldDescription
orders[]Serialized tenant orders (same shape as GET /orders/:order_id)
pagination.limit / offset / has_moreEchoed paging + whether more rows exist

Errors

StatusCodeWhen
403Tenant API key requiredkey is not tenant-scoped (e.g. a mystery-partner key)

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