> ## 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 Deposit

> Gets a cryptocurrency deposit.

---

**Authorization**

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



## OpenAPI

````yaml get /trade/deposits/deposit
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/deposits/deposit:
    get:
      tags:
        - Ripio Trade
      summary: Cryptocurrency Deposits - Get Cryptocurrency Deposit
      description: |-
        Gets a cryptocurrency deposit.

        ---

        **Authorization**

        - Requires a valid API key.
        - Required API-key permission(s):
          - Deposit (Read)
      parameters:
        - in: query
          name: id
          required: false
          description: Deposit identifier
          schema:
            example: 000A650D-F8A5-419A-A4C4-194452345981
            type: string
        - in: query
          name: hash
          required: false
          description: Transaction hash
          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:
                      id:
                        description: Deposit identifier
                        type: string
                      currency_code:
                        description: Currency code
                        type: string
                        example: BTC
                      hash:
                        description: Deposit hash
                        type: string
                      amount:
                        description: Amount
                        type: number
                      status:
                        description: Deposit status
                        type: string
                      create_date:
                        description: Datetime of the creation
                        type: string
                      confirmation_date:
                        description: Datetime of the confirmation
                        type: string
                      tag:
                        description: >-
                          Destination address tag - Check the information about
                          this currency in the public currencies endpoint to
                          check if this currency / network needs tag for
                          deposits
                        type: string
                      memo:
                        description: >-
                          Destination address memo - Check the information about
                          this currency in the public currencies endpoint to
                          check if this currency / network needs memo for
                          deposits
                        type: string
                      network:
                        description: Network
                        type: string
                      is_internal:
                        description: >-
                          If true, indicates that the deposit was sent
                          internally by another exchange user
                        type: boolean
                    required:
                      - id
                      - currency_code
                      - hash
                      - amount
                      - status
                      - create_date
                      - confirmation_date
                      - is_internal
                    type: object
                    example:
                      amount: 2.29999999
                      confirmation_date: '2017-10-12T22:40:08.273Z'
                      create_date: '2017-10-12T22:40:08.273Z'
                      currency_code: BTC
                      id: 3D41EEF3-A709-4EE5-BDEE-B6435CAA84C8
                      is_internal: false
                      hash: >-
                        4f87d009d88524e627b60c6fbe4ebe671a99lk9ad72aab17e0963c5fbef118e2
                      network: bitcoin
                      status: confirmed
                  error_code:
                    type: number
                    example: null
                  message:
                    type: string
                    example: null
                required:
                  - data
                  - error_code
                  - message
                type: object

````