> ## 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 Connectors

> List all available DEX connectors with their configurations.

Returns connector details including name, trading types, chain, and networks.
All fields normalized to snake_case.



## OpenAPI

````yaml /api-reference/openapi.json get /gateway/connectors
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/connectors:
    get:
      tags:
        - Gateway
      summary: List Connectors
      description: >-
        List all available DEX connectors with their configurations.


        Returns connector details including name, trading types, chain, and
        networks.

        All fields normalized to snake_case.
      operationId: list_connectors_gateway_connectors_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response List Connectors Gateway Connectors Get
      security:
        - HTTPBasic: []
components:
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````