/api/v1/cards/:unique_id/transfers read:inventory Transfer history for one of your cards, newest first — the rows POST /cards/:unique_id/transfer wrote. Paged like every other list: read pagination.has_more and pass pagination.next_offset back as ?offset.
GET /api/v1/cards/CARD-EXAMPLE-1/transfers?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/cards/CARD-EXAMPLE-1/transfers?limit=10' \ -H 'X-API-Key: rip_…'
| Field | Type | Required | Description |
|---|---|---|---|
limit | query int | — | 1..100, default 50. Non-integer values are a 400 (invalid_pagination) |
offset | query int | — | 0..10_000, default 0 |
data)| Field | Description |
|---|---|
transfers[] | Same row shape as POST /cards/:unique_id/transfer returns |
| Status | Code | When |
|---|---|---|
| 404 | not found | card not part of your account |
See Errors for the response envelope and the full code list.