Skip to main content
POST
/
v1
/
wallet
/
withdrawals
/
csv
Export Withdrawals CSV
curl --request POST \
  --url https://api.ondoperps.xyz/v1/wallet/withdrawals/csv \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "start_time": 1666203390,
  "end_time": 1709734800
}
'
"time,coin,size,address,status\n2025-02-20T15:45:00Z,USDC,500.00,0x054A94b753CBf65D1Bc484F6D41897b48251fbfF,complete\n2025-02-18T11:20:00Z,USDC,750.00,0x054A94b753CBf65D1Bc484F6D41897b48251fbfF,pending\n"

Authorizations

Authorization
string
header
required

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

Body

application/json
start_time
integer<int64>

Start time as Unix timestamp in seconds

Example:

1666203390

end_time
integer<int64>

End time as Unix timestamp in seconds

Example:

1709734800

Response

CSV file of withdrawals for the requested time range.

CSV text with a header row followed by one row per withdrawal.