Skip to main content
GET /v1/accounts/{accountId}/withdrawals?limit=50&cursor=...
Query paramTypeDescription
statusstringFilter by status. Comma-separated for multiple values: pending, broadcast, confirmed, failed.
fromtimestampISO 8601 lower bound on createdAt (inclusive).
totimestampISO 8601 upper bound (inclusive).
limitintMax 200. Default 50.
cursorstringOpaque pagination token.
Response
{
  "withdrawals": [
    {
      "withdrawalId": "wd_a1b2...",
      "status": "confirmed",
      "amount": "500.00",
      "fee": "1.00",
      "destinationAddress": "0xUSER...",
      "txHash": "0x123abc...",
      "createdAt": "2026-05-06T11:00:00Z",
      "broadcastAt": "2026-05-06T11:00:02Z",
      "confirmedAt": "2026-05-06T11:00:08Z"
    }
  ],
  "nextCursor": null
}
Results are ordered by createdAt descending (newest first). nextCursor is null on the last page.