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

> Get summary statistics for all executors.

Returns aggregate information including:
- Total active/completed executor counts
- Total PnL and volume
- Breakdown by executor type, connector, and status



## OpenAPI

````yaml /api-reference/openapi.json get /executors/summary
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/summary:
    get:
      tags:
        - Executors
      summary: Get Executors Summary
      description: |-
        Get summary statistics for all executors.

        Returns aggregate information including:
        - Total active/completed executor counts
        - Total PnL and volume
        - Breakdown by executor type, connector, and status
      operationId: get_executors_summary_executors_summary_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExecutorsSummaryResponse'
      security:
        - HTTPBasic: []
components:
  schemas:
    ExecutorsSummaryResponse:
      properties:
        total_active:
          type: integer
          title: Total Active
          description: Number of active executors
        total_pnl_quote:
          type: number
          title: Total Pnl Quote
          description: Total PnL across active executors
        total_volume_quote:
          type: number
          title: Total Volume Quote
          description: Total volume across active executors
        by_type:
          additionalProperties:
            type: integer
          type: object
          title: By Type
          description: Executor count by type
        by_connector:
          additionalProperties:
            type: integer
          type: object
          title: By Connector
          description: Executor count by connector
        by_status:
          additionalProperties:
            type: integer
          type: object
          title: By Status
          description: Executor count by status
      type: object
      required:
        - total_active
        - total_pnl_quote
        - total_volume_quote
        - by_type
        - by_connector
        - by_status
      title: ExecutorsSummaryResponse
      description: Summary of active executors.
      example:
        by_connector:
          binance: 1
          binance_perpetual: 4
        by_status:
          RUNNING: 5
        by_type:
          grid_executor: 2
          position_executor: 3
        total_active: 5
        total_pnl_quote: 1234.56
        total_volume_quote: 50000
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````