# Fetch withdrawal

Fetches a bitcoin withdrawal.

Endpoint: GET /v1/withdrawals/bitcoin/{withdrawalId}
Version: 0.0.1
Security: apiKey

## Path parameters:

  - `withdrawalId` (string, required)

## Response 200 fields (application/json):

  - `withdrawalId` (string)

  - `destination` (string)
    The destination of the withdrawal.

  - `network` (string)
    The network this withdrawal was sent on.
    Enum: "NETWORK_BITCOIN", "NETWORK_LIGHTNING"

  - `amountBtc` (number)
    The amount of BTC that was withdrawn.

  - `amountNok` (number)
    The value of the BTC that was withdrawn, in NOK equivalent
 at time of withdrawal.

  - `status` (string)
    The status of the withdrawal.
    Enum: "WITHDRAWAL_STATUS_PENDING", "WITHDRAWAL_STATUS_COMPLETED", "WITHDRAWAL_STATUS_FAILED"

  - `createdAt` (string)
    The time the withdrawal was initiated.

  - `sentAt` (string)
    The time the withdrawal was sent from the platform.


