Skip to main content
GET /v1/accounts/{accountId}/withdrawals/{withdrawalId}
Returns the withdrawal’s current status, amount, fee, destination address, and on-chain transaction hash once broadcast. Use this to poll for confirmation after Withdraw USDC. Response
{
  "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"
}
Status values: pendingbroadcastconfirmed, with failed as a terminal alternative. Each successful transition stamps the corresponding timestamp.