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

> Returns the list of Ripio deposit accounts (fiat funding rails) the authenticated user can use to fund their account. Each list item is a discriminated union member sharing a common core (`type`, `account_number`, `account_label`, `currency`, `deposit_constraint`) plus rail-specific fields.

Discriminated by `type`, depending on the account's country:
- `country = AR` → `type: "cvu"`. Deposit by CVU (Clave Virtual Uniforme). `deposit_constraint` is `null` (any valid CVU may deposit).
- `country = BR` → `type: "pix"`. Deposit by Pix, with `deposit_constraint.same_holder` indicating the required holder (CPF) for the originating account.

`deposit_constraint` is always present: `null` means no restriction; an object communicates a rule.

Only available for accounts with country `AR` or `BR`. Returns `403` for other countries.

Returns `404` if the authenticated user does not have a Ripio deposit account provisioned. In that case, contact support.

---

**Authorization**

- Requires a valid API key.



## OpenAPI

````yaml get /wallet/banking/deposit-accounts/
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:
  /wallet/banking/deposit-accounts/:
    get:
      tags:
        - Ripio Wallet
      summary: banking - List Ripio deposit accounts
      description: >-
        Returns the list of Ripio deposit accounts (fiat funding rails) the
        authenticated user can use to fund their account. Each list item is a
        discriminated union member sharing a common core (`type`,
        `account_number`, `account_label`, `currency`, `deposit_constraint`)
        plus rail-specific fields.


        Discriminated by `type`, depending on the account's country:

        - `country = AR` → `type: "cvu"`. Deposit by CVU (Clave Virtual
        Uniforme). `deposit_constraint` is `null` (any valid CVU may deposit).

        - `country = BR` → `type: "pix"`. Deposit by Pix, with
        `deposit_constraint.same_holder` indicating the required holder (CPF)
        for the originating account.


        `deposit_constraint` is always present: `null` means no restriction; an
        object communicates a rule.


        Only available for accounts with country `AR` or `BR`. Returns `403` for
        other countries.


        Returns `404` if the authenticated user does not have a Ripio deposit
        account provisioned. In that case, contact support.


        ---


        **Authorization**


        - Requires a valid API key.
      parameters:
        - 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: Deposit accounts retrieved successfully.
                properties:
                  error_code:
                    type: string
                    example: null
                  message:
                    type: string
                    example: null
                  data:
                    items:
                      type: object
                    type: array
                required:
                  - error_code
                  - message
                  - data
                type: object
        '401':
          description: Error response 401
        '403':
          description: Error response 403
        '404':
          description: Error response 404

````