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

# List Cryptocurrency Deposits

> Lists the user's cryptocurrency deposits.

**Attention:** Due to performance concerns, this endpoint now uses cursor-based pagination. The pagination object currently included in the response is now a placeholder and will be entirely removed as of 2026-06-01. The parameter current_page is also a placeholder and will be removed at the same time. Please update your integration accordingly and refer to the documentation for the correct pagination handling.

---

**Authorization**

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



## OpenAPI

````yaml get /trade/deposits
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:
    get:
      tags:
        - Ripio Trade
      summary: Cryptocurrency Deposits - List Cryptocurrency Deposits
      description: >-
        Lists the user's cryptocurrency deposits.


        **Attention:** Due to performance concerns, this endpoint now uses
        cursor-based pagination. The pagination object currently included in the
        response is now a placeholder and will be entirely removed as of
        2026-06-01. The parameter current_page is also a placeholder and will be
        removed at the same time. Please update your integration accordingly and
        refer to the documentation for the correct pagination handling.


        ---


        **Authorization**


        - Requires a valid API key.

        - Required API-key permission(s):
          - Deposit (Read)
      parameters:
        - in: query
          name: currency_code
          required: false
          description: Currency code
          schema:
            example: BTC
            type: string
        - in: query
          name: status
          required: false
          description: Deposit status
          schema:
            type: string
        - in: query
          name: start_date
          required: false
          description: Initial date filter in ISO-8601 format
          schema:
            type: string
        - in: query
          name: end_date
          required: false
          description: Final date filter in ISO-8601 format
          schema:
            type: string
        - in: query
          name: page_size
          required: false
          description: Number of records per page
          schema:
            example: 100
            type: number
        - in: query
          name: current_page
          required: false
          description: Page number for pagination
          schema:
            example: 3
            type: number
        - in: query
          name: network
          required: false
          description: Network
          schema:
            example: bitcoin
            type: string
        - in: query
          name: c
          required: false
          description: >-
            The `c` parameter is the cursor you should use to fetch the next
            page of results
          schema:
            example: BTC
            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:
                      deposits:
                        items:
                          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
                        type: array
                        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
                          - amount: 2.29999999
                            confirmation_date: '2017-10-12T20:06:52.983Z'
                            create_date: '2017-10-12T20:06:52.983Z'
                            currency_code: BTC
                            id: 3011675E-A549-46F3-A70B-0F0B0A01A2D6
                            is_internal: false
                            hash: >-
                              181378774394ec47b9861d9facfcd4d4ea11a447tr82532c654d5ee1306b4857
                            network: bitcoin
                            status: confirmed
                      pagination:
                        properties:
                          current_page:
                            description: Current page
                            type: number
                          page_size:
                            description: Page size
                            type: number
                          registers_count:
                            description: Total number of registers
                            type: number
                          total_pages:
                            description: Total number of pages
                            type: number
                        required:
                          - current_page
                          - page_size
                          - registers_count
                          - total_pages
                        type: object
                        example:
                          current_page: 1
                          registers_count: 21
                          total_pages: 1
                          page_size: 100
                      nc:
                        description: >-
                          This is the next cursor, use its value with the `c`
                          parameter to retrieve the next page
                        type: string
                      pc:
                        description: >-
                          This is the previous cursor, use its value with the
                          `c` parameter to retrieve the previous page
                        type: string
                    required:
                      - deposits
                      - pagination
                    type: object
                  error_code:
                    type: number
                    example: null
                  message:
                    type: string
                    example: null
                required:
                  - data
                  - error_code
                  - message
                type: object

````