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

> Get list of executors with optional filtering.

Returns active executors from memory combined with completed executors from database.

Filters:
- `account_names`: Filter by specific accounts
- `connector_names`: Filter by connectors
- `trading_pairs`: Filter by trading pairs
- `executor_types`: Filter by executor types
- `status`: Filter by status (RUNNING, TERMINATED, etc.)

Returns paginated list of executor summaries.



## OpenAPI

````yaml /api-reference/openapi.json post /executors/search
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/search:
    post:
      tags:
        - Executors
      summary: List Executors
      description: >-
        Get list of executors with optional filtering.


        Returns active executors from memory combined with completed executors
        from database.


        Filters:

        - `account_names`: Filter by specific accounts

        - `connector_names`: Filter by connectors

        - `trading_pairs`: Filter by trading pairs

        - `executor_types`: Filter by executor types

        - `status`: Filter by status (RUNNING, TERMINATED, etc.)


        Returns paginated list of executor summaries.
      operationId: list_executors_executors_search_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExecutorFilterRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBasic: []
components:
  schemas:
    ExecutorFilterRequest:
      properties:
        limit:
          type: integer
          maximum: 1000
          minimum: 1
          title: Limit
          description: Number of items per page
          default: 100
        cursor:
          anyOf:
            - type: string
            - type: 'null'
          title: Cursor
          description: Cursor for next page
        account_names:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Account Names
          description: Filter by account names
        connector_names:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Connector Names
          description: Filter by connector names
        trading_pairs:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Trading Pairs
          description: Filter by trading pairs
        executor_types:
          anyOf:
            - items:
                type: string
                enum:
                  - position_executor
                  - grid_executor
                  - dca_executor
                  - arbitrage_executor
                  - twap_executor
                  - xemm_executor
                  - order_executor
                  - lp_executor
              type: array
            - type: 'null'
          title: Executor Types
          description: Filter by executor types
        status:
          anyOf:
            - type: string
            - type: 'null'
          title: Status
          description: Filter by status (RUNNING, TERMINATED, etc.)
      type: object
      title: ExecutorFilterRequest
      description: Request to filter and list executors.
    PaginatedResponse:
      properties:
        data:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Data
        pagination:
          additionalProperties: true
          type: object
          title: Pagination
      type: object
      required:
        - data
        - pagination
      title: PaginatedResponse
      description: Generic paginated response.
      example:
        data: []
        pagination:
          has_more: true
          limit: 100
          next_cursor: '2024-01-10T12:00:00'
          total_count: 500
    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

````