GET
/v1/withdrawals/:idRetrieve a withdrawal
Returns a single Withdrawal object by ID.
Parameters
Returns
The Withdrawal object.
Errors
| Status | Code | Description |
|---|---|---|
| 404 | not_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
}