List transfers for card

GET /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.

Try it 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.

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/cards/CARD-EXAMPLE-1/transfers?limit=10' \
  -H 'X-API-Key: rip_…'

Request fields

FieldTypeRequiredDescription
limitquery int1..100, default 50. Non-integer values are a 400 (invalid_pagination)
offsetquery int0..10_000, default 0

Response fields (data)

FieldDescription
transfers[]Same row shape as POST /cards/:unique_id/transfer returns

Errors

StatusCodeWhen
404not foundcard not part of your account

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