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

# Get all enabled networks

> Returns the enabled-networks catalog (ID, name, alias) from cache. Accessible to any authenticated user — exposes only non-sensitive metadata. On cache miss, rebuilds the index from the database.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/network/enabled
openapi: 3.0.0
info:
  title: Oumla Core Server
  description: >-
    Core API. Errors, request and response are documented per endpoint. Error
    response shape: code, category, message, statusCode, path, timestamp,
    requestId.
  version: '1.0'
  contact: {}
servers:
  - url: https://sandbox.oumla.com
    description: Mainnet
    x-fern-server-name: Mainnet
security: []
tags: []
paths:
  /api/v1/network/enabled:
    get:
      tags:
        - networks
      summary: Get all enabled networks
      description: >-
        Returns the enabled-networks catalog (ID, name, alias) from cache.
        Accessible to any authenticated user — exposes only non-sensitive
        metadata. On cache miss, rebuilds the index from the database.
      operationId: getEnabledNetworks
      parameters:
        - $ref: '#/components/parameters/SdkVersionHeader'
      responses:
        '200':
          description: Enabled networks index
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetEnabledNetworksResponseDto'
      security:
        - x-api-key: []
components:
  parameters:
    SdkVersionHeader:
      name: x-sdk-version
      in: header
      description: SDK version header
      required: true
      schema:
        type: string
        default: 1.0.0
  schemas:
    GetEnabledNetworksResponseDto:
      type: object
      properties:
        networks:
          type: array
          items:
            $ref: '#/components/schemas/EnabledNetworkItemDto'
      required:
        - networks
    EnabledNetworkItemDto:
      type: object
      properties:
        networkId:
          type: string
          description: Network UUID
        name:
          type: string
          description: Human-readable network name
        alias:
          type: string
          description: Network alias used by event producers
      required:
        - networkId
        - name
        - alias
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication

````