Wallet
List withdrawals
Returns withdrawal history for the authenticated account using cursor-based pagination.
Requires the deposit permission on the API key.
get/wallet/withdrawals
Query parameters
currencystring
Filter by currency code.
limitinteger
Number of records to return.
cursorstring
Opaque pagination cursor returned in a previous response meta.next_cursor.
Response
Withdrawal history returned successfully.
Example response
{
"data": [
{
"id": "wd-001",
"currency": "BTC",
"amount": "0.01",
"fee_amount": "0.0001",
"amount_after_fees": "0.0099",
"status": "withdrawal_status_processing",
"channel_type": "crypto",
"network_code": "BTC",
"address": "bc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh",
"requested_at": 1712000000,
"created_at": 1712000000
}
],
"meta": {
"next_cursor": "eyJpZCI6IjEyMyJ9",
"has_more": true,
"total": 142
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.