> ## 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 Executor Config Schema

> Get configuration schema for a specific executor type.

Returns detailed information about each configuration field including:
- **name**: Field name
- **type**: Data type (str, int, Decimal, enum, etc.)
- **description**: Field description
- **required**: Whether the field is required
- **default**: Default value if any
- **constraints**: Validation constraints (min, max, pattern, etc.)
- **enum_values**: Possible values for enum types

Also returns nested type definitions for complex fields.



## OpenAPI

````yaml /api-reference/openapi.json get /executors/types/{executor_type}/config
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:
  /executors/types/{executor_type}/config:
    get:
      tags:
        - Executors
      summary: Get Executor Config Schema
      description: |-
        Get configuration schema for a specific executor type.

        Returns detailed information about each configuration field including:
        - **name**: Field name
        - **type**: Data type (str, int, Decimal, enum, etc.)
        - **description**: Field description
        - **required**: Whether the field is required
        - **default**: Default value if any
        - **constraints**: Validation constraints (min, max, pattern, etc.)
        - **enum_values**: Possible values for enum types

        Also returns nested type definitions for complex fields.
      operationId: get_executor_config_schema_executors_types__executor_type__config_get
      parameters:
        - name: executor_type
          in: path
          required: true
          schema:
            type: string
            title: Executor Type
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '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

````