> ## 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 Controller Configs

> List all controller configurations with metadata.

Returns:
    List of controller configuration objects with name, controller_name, controller_type, and other metadata



## OpenAPI

````yaml /api-reference/openapi.json get /controllers/configs
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:
  /controllers/configs:
    get:
      tags:
        - Controllers
      summary: List Controller Configs
      description: |-
        List all controller configurations with metadata.

        Returns:
            List of controller configuration objects with name, controller_name, controller_type, and other metadata
      operationId: list_controller_configs_controllers_configs_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  additionalProperties: true
                  type: object
                type: array
                title: Response List Controller Configs Controllers Configs Get
      security:
        - HTTPBasic: []
components:
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````