Get withdrawal

GET /api/v1/withdrawals/:id read:inventory

A single withdrawal with the unique_id of every card included. Treat destination as opaque: on withdrawals you created it echoes what you submitted, but on RIP.FUN-initiated withdrawals it carries our internal fulfillment record, whose structure is not part of this API contract and may change without notice — do not build against its contents.

Try it GET /api/v1/withdrawals/0

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/withdrawals/0' \
  -H 'X-API-Key: rip_…'

Response fields (data)

FieldDescription
withdrawalSame shape as POST /withdrawals
items[].tenant_card_id / unique_idEvery card on the withdrawal

Errors

StatusCodeWhen
400invalid idid is not a positive integer
404not foundwithdrawal not part of your account

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