GET/v1/withdrawals/:id

Retrieve a withdrawal

Returns a single Withdrawal object by ID.

Parameters

stringRequired

Withdrawal ID in the path. Of the form wd_….

Returns

The Withdrawal object.

Errors

StatusCodeDescription
404not_found

No withdrawal with that ID exists on this account.

Retrieve a withdrawal
curl https://api.aeses.io/v1/withdrawals/wd_01HXYZ8N3R6T5VH4K9BMCSE2GP \
-H "x-api-key: sk_live_..."
Response
{
"id": "wd_01HXYZ8N3R6T5VH4K9BMCSE2GP",
"object": "withdrawal",
"status": "broadcasted",
"asset": "USDC",
"chain": "ethereum",
"amount": "150.00",
"fee": "1.25",
"address": "0xRecipient...",
"tx_hash": "0xabc123...",
"created_at": 1731600300
}