Get Withdrawals
Get withdrawal history for the authenticated account. If no end time is provided, the current time will be used. Maximum of 100 entries returned per request.
get/v1/account/withdrawals
Query parameters
withdrawal_status'pending' | 'confirmed' | 'removed' | 'failed'
Withdrawal status
hashstring
On-chain transaction hash, "0x" if not yet mined
Example:0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef
start_timestampinteger
Start timestamp in milliseconds
Example:1767225600000
end_timestampinteger
End timestamp in milliseconds
Example:1767229200000
Response
Withdrawal history response.
Example response
{
"data": [
{
"asset": "USDC",
"amount": "100000000",
"to": "0x1234567890abcdef1234567890abcdef12345678",
"fee": "5.00",
"hash": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
"confirmations": 12,
"required_confirmations": 12,
"created_timestamp": 1767225600000,
"confirmed_timestamp": 1767225600000
}
]
}