> ## 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 Account Crypto Addresses

> Returns all blockchain deposit addresses assigned to the authenticated user's account.

Each entry includes the address string, the associated network (with metadata), an optional memo ID (required for networks like XRP/Stellar), and the address version.

Results can be filtered by network code or address value, and are ordered by network display order.

---

**Authorization**

- Requires a valid API key.



## OpenAPI

````yaml get /wallet/addresses/
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/addresses/:
    get:
      tags:
        - Ripio Wallet
      summary: addresses - Get account crypto addresses
      description: >-
        Returns all blockchain deposit addresses assigned to the authenticated
        user's account.


        Each entry includes the address string, the associated network (with
        metadata), an optional memo ID (required for networks like XRP/Stellar),
        and the address version.


        Results can be filtered by network code or address value, and are
        ordered by network display order.


        ---


        **Authorization**


        - Requires a valid API key.
      parameters:
        - in: query
          name: network
          required: false
          description: Filter by network code (e.g. `ethereum`, `bitcoin`, `tron`).
          schema:
            type: string
        - in: query
          name: address
          required: false
          description: Filter by exact address value.
          schema:
            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: Account addresses retrieved successfully.
                properties:
                  error_code:
                    type: string
                    example: null
                  message:
                    type: string
                    example: null
                  data:
                    items:
                      description: >-
                        A blockchain deposit address assigned to the user's
                        account.
                      properties:
                        address:
                          description: Blockchain address string.
                          type: string
                          example: 0xabc123...
                        memo_id:
                          description: >-
                            Memo or destination tag required by some networks
                            (XRP, Stellar). Null if not applicable.
                          type: string
                          example: null
                        version:
                          description: >-
                            Address version. Incremented when an address is
                            rotated.
                          type: integer
                          example: 1
                        network:
                          description: >-
                            Minimal network representation returned alongside an
                            address or currency-network.
                          properties:
                            id:
                              description: Internal network ID.
                              type: integer
                              example: 1
                            code:
                              description: Network code (blockchain identifier).
                              type: string
                              example: ethereum
                            name:
                              description: Human-readable network name.
                              type: string
                              example: Ethereum
                            status_tag:
                              description: Optional status label (e.g. `congested`).
                              type: string
                              example: null
                            deliver_time:
                              description: Estimated confirmation time.
                              type: string
                              example: ~15 min
                            enabled:
                              description: Whether this network is currently enabled.
                              type: boolean
                              example: true
                            use_memo:
                              description: >-
                                Whether transactions on this network require a
                                memo/tag (e.g. XRP, Stellar).
                              type: boolean
                              example: false
                          required:
                            - id
                            - code
                            - name
                            - status_tag
                            - deliver_time
                            - enabled
                            - use_memo
                          type: object
                      required:
                        - address
                        - memo_id
                        - network
                        - version
                      type: object
                    type: array
                required:
                  - error_code
                  - message
                  - data
                type: object
                example:
                  error_code: null
                  message: null
                  data:
                    - address: 0xabc123...
                      memo_id: null
                      version: 1
                      network:
                        id: 1
                        code: ethereum
                        name: Ethereum
                        status_tag: null
                        deliver_time: ~15 min
                        enabled: true
                        use_memo: false
        '401':
          description: Error response 401
        '403':
          description: Error response 403

````