v1
latestOpenAPI 3.0.22026-07-26123510445.2 KBWithdrawals
List Withdraws
Query withdrawal records. Stablecoin Account API Publisher Disclaimer
get/v1/ramp/withdraw
Query parameters
page_numinteger
Page number, default 1
page_sizeinteger
Items per page, default 20
currencystring
Filter by currency
networkstring
Filter by network
statusstring
Order status
start_timestring
Example:2024-03-01T00:00:00+08:00
Exclusive start time used to filter by create_time. ISO 8601 format.
end_timestring
Example:2024-03-02T00:00:00+08:00
Exclusive end time used to filter by create_time. ISO 8601 format.
Headers
x-on-behalf-ofstring
Specifies the sub-account on whose behalf the request is made. This should be set to the account_id, which can be retrieved via the List Connected Accounts API. If omitted or empty, the request is executed using the master account. More information at Connected Accounts.
Response
Successfully retrieved withdrawals
Example response
{
"code": 200,
"message": "Success",
"data": {
"data": [
{
"order_id": "f75fdee5-0cc1-4b52-818e-497dd376cced",
"short_order_id": "WD260124-N1PAAIXX",
"order_status": "Pending",
"order_type": "Withdraw",
"currency": "USDC",
"network": "ETH",
"amount": "100",
"withdraw_address": "0x0993446fBB19f4e828768515eF7A9408B5F1A000",
"network_fee": "0.66",
"processing_fee": "0",
"actual_amount": "99.34",
"reason": "test",
"create_time": "2026-01-24 11:41:37 +08:00",
"txid": "0x1234567890abcdef"
}
]
}
}