Skip to main content
GET
List withdrawals
Returns a paginated list of all withdrawals — both fiat and stablecoin — initiated by the organization. Use this endpoint to:
  • View withdrawal history across currencies
  • Track withdrawal status (COMPLETED, PENDING, CANCELLED)
  • Reconcile outgoing fiat and stablecoin transfers
  • Look up Fedwire IMAD or other payment reference data
Payment-method-specific metadata in paymentDetails. Each withdrawal record now includes an optional paymentDetails object that carries payment-rail-specific identifiers. For USD FEDWIRE withdrawals this looks like { "FEDWIRE": { "imad": "20240315B1QGC07C002345", "omad": "..." } }. The field is null for methods that don’t surface such data, and the same shape is also exposed on each entry of statusHistory[].paymentDetails so you can see when an identifier first appeared in the withdrawal’s lifecycle.

Errors

See the full v2 error reference for retry semantics and idempotency-specific codes.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

orgId
string
required

Query Parameters

page
number | null
Required range: x >= 1
Example:

1

limit
number | null
Required range: 1 <= x <= 50
Example:

10

Response

success

status
enum<string>
Available options:
success,
error
Example:

"success"

data
object[]
message
string
Example:

"Data fetched successfully"

meta
object