/api/v1/inbound-shipments read:inventory Lists your inbound shipments, newest first by created_at. That includes any package that arrived unannounced and was logged against your account at the door (source "warehouse"). Poll ?status=EXPECTED to see what we are still waiting for, or consume inbound_shipment.received from your activity log instead of polling. Paged like every other list: read pagination.has_more and pass pagination.next_offset back as ?offset.
GET /api/v1/inbound-shipments?limit=10 These inputs are shared across all docs pages, so 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/inbound-shipments?limit=10' \ -H 'X-API-Key: rip_…'
| Field | Type | Required | Description |
|---|---|---|---|
status | query string | — | EXPECTED | RECEIVED | CANCELLED — matched exactly; an unrecognized value returns 400 |
tracking_number | query string | — | Find a package by its tracking number, matched the same forgiving way as on create |
site | query string | — | Only packages addressed to this site code — any site, including one that has since stopped receiving, so older packages stay findable. An unknown code returns 400 |
limit / offset | query int | — | limit 1..100 default 50; offset 0..10_000 default 0. Non-integer values are a 400 (invalid_pagination). The response carries a pagination object { limit, offset, has_more, next_offset } beside the array |
data)| Field | Description |
|---|---|
inbound_shipments[] | Same row shape as POST /inbound-shipments |
| Status | Code | When |
|---|---|---|
| 400 | invalid status | status is not one of the accepted values |
See Errors for the response envelope and the full code list.