GET/v1/withdrawals

List withdrawals

Returns a paginated list of withdrawals.

Parameters

enumOptional

Filter by status: pending, processing, broadcasted, completed, failed, or cancelled.

stringOptional

Filter by asset.

stringOptional

Filter by chain.

integerOptional

Unix timestamp. Returns withdrawals created strictly after this time.

integerOptional

Unix timestamp. Returns withdrawals created strictly before this time.

integerOptionalDefault: 25

Between 1 and 100.

stringOptional

Pagination cursor.

Returns

A paginated list of Withdrawal objects.

List recent withdrawals
curl "https://api.aeses.io/v1/withdrawals?status=completed&limit=2" \
-H "x-api-key: sk_live_..."
Response
{
"object": "list",
"data": [
  {
    "id": "wd_01HXYZ8N3R6T5VH4K9BMCSE2GP",
    "object": "withdrawal",
    "status": "completed",
    "asset": "USDC",
    "amount": "150.00",
    "created_at": 1731600300
  },
  {
    "id": "wd_01HXYW2M5P8R3VG2K8AQWPRT4FK",
    "object": "withdrawal",
    "status": "completed",
    "asset": "ETH",
    "amount": "0.5",
    "created_at": 1731580000
  }
],
"has_more": false,
"next_cursor": null
}