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

# List Withdrawals — GET /withdrawals

> Retrieve your most recent withdrawals, newest first. Requires withdrawals:read.

Returns your 100 most recent withdrawals, newest first. Requires the `withdrawals:read` scope.

## Request

**`GET https://api.blockra.io/withdrawals`**

## Response

Returns an array of withdrawal objects in the standard `data` envelope.

<ResponseField name="id" type="string">
  The withdrawal ID, prefixed `wd_`.
</ResponseField>

<ResponseField name="status" type="string">
  `requested`, `broadcast`, `completed`, or `failed`.
</ResponseField>

<ResponseField name="asset" type="string">
  The coin.
</ResponseField>

<ResponseField name="network" type="string">
  The chain: `bitcoin`, `litecoin`, or `ethereum`.
</ResponseField>

<ResponseField name="amount_atoms" type="string">
  Gross amount debited from your balance, in the coin's smallest unit.
</ResponseField>

<ResponseField name="fee_atoms" type="string">
  Blockra payout fee, in the coin's smallest unit.
</ResponseField>

<ResponseField name="net_atoms" type="string">
  Amount sent on-chain, in the coin's smallest unit.
</ResponseField>

<ResponseField name="destination_address" type="string">
  The recipient wallet address.
</ResponseField>

<ResponseField name="tx_hash" type="string">
  The on-chain transaction hash, or `null` if not yet broadcast.
</ResponseField>

<ResponseField name="created_at" type="string">
  When the withdrawal was requested.
</ResponseField>

<ResponseField name="completed_at" type="string">
  When it confirmed on-chain, or `null`.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.blockra.io/withdrawals \
    -H "X-API-Key: bk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": [
      {
        "id": "wd_1a2b3c4d5e6f7g8h",
        "status": "completed",
        "asset": "LTC",
        "network": "litecoin",
        "amount_atoms": "50000000",
        "fee_atoms": "250000",
        "net_atoms": "49740000",
        "destination_address": "ltc1q0u0dnysyzuyua7tg2fu05ztgssazx0j5fqfhun",
        "tx_hash": "9f2c8a1b...",
        "created_at": "2026-07-09T02:12:00.000Z",
        "completed_at": "2026-07-09T02:19:00.000Z"
      }
    ],
    "error": null
  }
  ```
</ResponseExample>
