> ## 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 Available Executor Types

> Get list of available executor types with descriptions.

Returns information about each supported executor type.



## OpenAPI

````yaml /api-reference/openapi.json get /executors/types/available
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/available:
    get:
      tags:
        - Executors
      summary: Get Available Executor Types
      description: |-
        Get list of available executor types with descriptions.

        Returns information about each supported executor type.
      operationId: get_available_executor_types_executors_types_available_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBasic: []
components:
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````