> ## Documentation Index
> Fetch the complete documentation index at: https://enterprise.predexon.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Withdrawal

> Track a withdrawal by ID

```http theme={null}
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](/ledger/api-reference/withdrawals/withdraw).

**Response**

```json theme={null}
{
  "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: `pending` → `broadcast` → `confirmed`, with `failed` as a terminal alternative. Each successful transition stamps the corresponding timestamp.
