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

# Get Cryptocurrency Withdrawal

> Gets a cryptocurrency withdrawal.

---

**Authorization**

- Requires a valid API key.
- Required API-key permission(s):
  - Withdrawal (Read)



## OpenAPI

````yaml get /trade/withdrawals/withdrawal
openapi: 3.0.0
info:
  title: Ripio Gateway
  description: Ripio API - Services documentation.
  version: 0.1.0
  x-logo:
    url: https://cwstatic.nyc3.digitaloceanspaces.com/1996/bitcointrade.png
servers:
  - url: https://api.ripio.com
    description: Production environment
security: []
paths:
  /trade/withdrawals/withdrawal:
    get:
      tags:
        - Ripio Trade
      summary: Cryptocurrency Withdrawals - Get Cryptocurrency Withdrawal
      description: |-
        Gets a cryptocurrency withdrawal.

        ---

        **Authorization**

        - Requires a valid API key.
        - Required API-key permission(s):
          - Withdrawal (Read)
      parameters:
        - in: query
          name: id
          required: false
          description: Withdrawal identifier
          schema:
            example: 000A650D-F8A5-419A-A4C4-194452345981
            type: string
        - in: query
          name: external_id
          required: false
          description: Withdrawal external identifier
          schema:
            example: 000A650D-F8A5-419A-A4C4-194452345981
            type: string
        - in: header
          name: authorization
          required: true
          description: The API key as a string.
          schema:
            type: string
        - in: header
          name: signature
          required: true
          description: >-
            See the [Generating
            Signature](/static/api/authentication#generating-signature) section
            for more details.
          schema:
            type: string
        - in: header
          name: timestamp
          required: true
          description: >-
            A timestamp in milliseconds. See the [Timestamp
            Security](/static/api/authentication#timestamp-security) section for
            more details.
          schema:
            type: number
        - in: header
          name: timstamp-tolerance
          required: false
          description: >-
            An additional, non-required parameter, that you can send to specify
            the number of milliseconds after the timestamp for the request to be
            valid. See the [Timestamp
            Security](/static/api/authentication#timestamp-security) section for
            more details.
          schema:
            type: number
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                description: Ok
                properties:
                  data:
                    properties:
                      amount:
                        description: Amount
                        type: number
                        example: 0.1
                      create_date:
                        description: Datetime of the creation
                        type: string
                        example: '2019-01-25T16:37:15.443Z'
                      currency_code:
                        description: Currency code
                        type: string
                        example: BTC
                      destination_address:
                        description: Destination address
                        type: string
                        example: rw9nf3WgsagJiZnkAeZzXZuqeCQ6LHm2h1
                      external_id:
                        description: >-
                          External id (this is sent by the user when creating a
                          withdrawal, and it's optional)
                        type: string
                        example: rtd-9012-lkju-908
                      is_internal:
                        description: Flag that indicates if it's an internal wallet
                        type: boolean
                        example: false
                      link:
                        description: Withdrawal link
                        type: string
                        example: null
                      miner_fee:
                        description: Miner fee
                        type: number
                        example: 0
                      miner_fee_type:
                        description: Miner fee type
                        type: string
                        example: 1
                      network:
                        description: Network
                        type: string
                        example: bitcoin
                      status:
                        description: Withdrawal status
                        type: string
                      transaction_id:
                        description: Transaction id
                        type: string
                        example: null
                      update_date:
                        description: Datetime of the last update
                        type: string
                        example: '2019-01-25T16:37:15.443Z'
                      id:
                        description: Withdrawal identifier
                        type: string
                        example: A1DCD3B6-1CBD-4F17-ADA0-230ADEC04173
                      fee:
                        description: Fee charged by the exchange
                        type: number
                        example: 0
                      hash:
                        description: Transaction hash
                        type: string
                        example: null
                      memo:
                        description: >-
                          Destination address memo - Check the information about
                          this currency in the public currencies endpoint to
                          check if this currency / network offers memo for
                          withdrawals
                        type: string
                      tag:
                        description: >-
                          Destination address tag - Check the information about
                          this currency in the public currencies endpoint to
                          check if this currency / network offers tag for
                          withdrawals
                        type: string
                    required:
                      - amount
                      - create_date
                      - currency_code
                      - destination_address
                      - link
                      - miner_fee
                      - miner_fee_type
                      - status
                      - transaction_id
                      - update_date
                      - id
                      - fee
                      - hash
                    type: object
                  error_code:
                    type: number
                    example: null
                  message:
                    type: string
                    example: null
                required:
                  - data
                  - error_code
                  - message
                type: object

````