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

# List Networks

> List all available networks across all chains.

Returns a flattened list of network IDs in the format 'chain-network'.
This is the primary interface for network discovery.



## OpenAPI

````yaml /api-reference/openapi.json get /gateway/networks
openapi: 3.1.0
info:
  title: Hummingbot API
  description: API for managing Hummingbot trading instances
  version: 1.0.1
servers:
  - url: http://localhost:8000
    description: Local development server
security: []
paths:
  /gateway/networks:
    get:
      tags:
        - Gateway
      summary: List Networks
      description: |-
        List all available networks across all chains.

        Returns a flattened list of network IDs in the format 'chain-network'.
        This is the primary interface for network discovery.
      operationId: list_networks_gateway_networks_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response List Networks Gateway Networks Get
      security:
        - HTTPBasic: []
components:
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````