> ## 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 Networks For A Currency

> Returns the list of blockchain networks available for the given currency for the authenticated user.

Each entry includes network metadata (code, name, images), fee information, send/receive flags, min/max amounts, and travel rule requirements.

The `currency` path parameter is the currency ticker (e.g. `BTC`, `ETH`, `USDT`).

Results are filtered by the user's account country and feature flags, and ordered by the network's display order.

---

**Authorization**

- Requires a valid API key.



## OpenAPI

````yaml get /wallet/network/currency-networks/{currency}/
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/network/currency-networks/{currency}/:
    get:
      tags:
        - Ripio Wallet
      summary: network - Get networks for a currency
      description: >-
        Returns the list of blockchain networks available for the given currency
        for the authenticated user.


        Each entry includes network metadata (code, name, images), fee
        information, send/receive flags, min/max amounts, and travel rule
        requirements.


        The `currency` path parameter is the currency ticker (e.g. `BTC`, `ETH`,
        `USDT`).


        Results are filtered by the user's account country and feature flags,
        and ordered by the network's display order.


        ---


        **Authorization**


        - Requires a valid API key.
      parameters:
        - in: query
          name: network__code
          required: false
          description: Filter by network code (e.g. `ethereum`).
          schema:
            type: string
        - in: query
          name: native_network
          required: false
          description: Filter to return only networks where this currency is native.
          schema:
            type: boolean
        - in: path
          name: currency
          required: true
          description: This property was not properly documented
          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: Currency networks retrieved successfully.
                properties:
                  error_code:
                    type: string
                    example: null
                  message:
                    type: string
                    example: null
                  data:
                    items:
                      description: A blockchain network available for a specific currency.
                      properties:
                        currency:
                          description: Currency ticker.
                          type: string
                          example: ETH
                        currency_balance_id:
                          description: Internal Ripio currency balance ID.
                          type: integer
                          example: 3
                        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
                        native_network:
                          description: >-
                            Whether this is the native blockchain for the
                            currency (e.g. ETH on ethereum).
                          type: boolean
                          example: true
                        standard:
                          description: >-
                            Token standard (e.g. `ERC20`, `BEP20`). Null for
                            native currencies.
                          type: string
                          example: ERC20
                        network_standard:
                          description: Network-level standard identifier.
                          type: string
                          example: ERC20
                        fee:
                          description: >-
                            Estimated withdrawal fee in currency units as a
                            decimal string.
                          type: string
                          example: '0.001'
                        fee_tag:
                          description: Optional display label for the fee.
                          type: string
                          example: null
                        send:
                          description: >-
                            Whether sending (withdrawal) is available on this
                            network.
                          type: boolean
                          example: true
                        receive:
                          description: >-
                            Whether receiving (deposit) is available on this
                            network.
                          type: boolean
                          example: true
                        order:
                          description: Display order.
                          type: integer
                          example: 1
                        enabled:
                          description: >-
                            Whether this currency-network combination is
                            enabled.
                          type: boolean
                          example: true
                        min_amount:
                          description: Minimum withdrawal amount as a decimal string.
                          type: string
                          example: '0.001'
                        max_amount:
                          description: Maximum withdrawal amount as a decimal string.
                          type: string
                          example: '100.000'
                        is_partial_disabled_send:
                          description: >-
                            Whether sends are partially disabled (e.g.
                            maintenance).
                          type: boolean
                          example: false
                        is_partial_disabled_receive:
                          description: Whether receives are partially disabled.
                          type: boolean
                          example: false
                        messages:
                          description: >-
                            Informational messages to display to the user about
                            this network.
                          items:
                            type: object
                          type: array
                          example: []
                      required:
                        - currency
                        - currency_balance_id
                        - network
                        - native_network
                        - standard
                        - network_standard
                        - fee
                        - fee_tag
                        - send
                        - receive
                        - order
                        - enabled
                        - min_amount
                        - max_amount
                        - is_partial_disabled_send
                        - is_partial_disabled_receive
                        - messages
                      type: object
                    type: array
                required:
                  - error_code
                  - message
                  - data
                type: object
                example:
                  error_code: null
                  message: null
                  data:
                    - currency: ETH
                      currency_balance_id: 3
                      network:
                        id: 1
                        code: ethereum
                        name: Ethereum
                        status_tag: null
                        deliver_time: ~15 min
                        enabled: true
                        use_memo: false
                      native_network: true
                      standard: ERC20
                      network_standard: ERC20
                      fee: '0.001'
                      fee_tag: null
                      send: true
                      receive: true
                      order: 1
                      enabled: true
                      min_amount: '0.001'
                      max_amount: '100.000'
                      is_partial_disabled_send: false
                      is_partial_disabled_receive: false
                      messages: []
        '401':
          description: Error response 401
        '403':
          description: Error response 403
        '404':
          description: Error response 404

````