> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nuvera.global/llms.txt
> Use this file to discover all available pages before exploring further.

# List enabled blockchain networks



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/crypto/networks
openapi: 3.1.0
info:
  title: Nuvera API
  description: Nuvera Payment Platform REST API
  version: '1.0'
  contact: {}
servers:
  - url: http://localhost:45000
security: []
tags: []
paths:
  /api/v1/crypto/networks:
    get:
      tags:
        - Crypto
      summary: List enabled blockchain networks
      operationId: CryptoController_listNetworks
      parameters: []
      responses:
        default:
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CryptoNetworkListOutputDto_Output'
      security:
        - x-api-key: []
          signed-request: []
components:
  schemas:
    CryptoNetworkListOutputDto_Output:
      type: object
      properties:
        networks:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              displayName:
                type: string
              nativeAssetSymbol:
                type: string
            required:
              - id
              - displayName
              - nativeAssetSymbol
            additionalProperties: false
      required:
        - networks
      additionalProperties: false
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key
      description: Nuvera API application secret key
    signed-request:
      scheme: bearer
      bearerFormat: JWT
      type: http
      description: RS256 per-request signed JWT

````