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

# Get Connector Config

> Get configuration for a specific DEX connector.

Args:
    connector_name: Connector name (e.g., 'meteora', 'raydium')



## OpenAPI

````yaml /api-reference/openapi.json get /gateway/connectors/{connector_name}
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/{connector_name}:
    get:
      tags:
        - Gateway
      summary: Get Connector Config
      description: |-
        Get configuration for a specific DEX connector.

        Args:
            connector_name: Connector name (e.g., 'meteora', 'raydium')
      operationId: get_connector_config_gateway_connectors__connector_name__get
      parameters:
        - name: connector_name
          in: path
          required: true
          schema:
            type: string
            title: Connector Name
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: >-
                  Response Get Connector Config Gateway Connectors  Connector
                  Name  Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBasic: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````