> ## 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 Performance Report

> Get a performance report for executors.

Aggregates metrics from all completed executors (optionally filtered by controller_id):
- Realized PnL (from completed executors, excluding POSITION_HOLD close type)
- Unrealized PnL (from active executors + position holds)
- Global PnL (realized + unrealized)
- Fees and volume totals
- Win rate and Sharpe ratio
- Breakdown by executor type
- Active position count

Query parameters:
- **controller_id**: Filter by controller ID (omit for all controllers)



## OpenAPI

````yaml /api-reference/openapi.json get /executors/performance
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/performance:
    get:
      tags:
        - Executors
      summary: Get Performance Report
      description: >-
        Get a performance report for executors.


        Aggregates metrics from all completed executors (optionally filtered by
        controller_id):

        - Realized PnL (from completed executors, excluding POSITION_HOLD close
        type)

        - Unrealized PnL (from active executors + position holds)

        - Global PnL (realized + unrealized)

        - Fees and volume totals

        - Win rate and Sharpe ratio

        - Breakdown by executor type

        - Active position count


        Query parameters:

        - **controller_id**: Filter by controller ID (omit for all controllers)
      operationId: get_performance_report_executors_performance_get
      parameters:
        - name: controller_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Controller Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PerformanceReportResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBasic: []
components:
  schemas:
    PerformanceReportResponse:
      properties:
        controller_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Controller Id
          description: Controller ID filter (None = all)
        total_executors:
          type: integer
          title: Total Executors
          description: Total executor count
        by_status:
          additionalProperties:
            type: integer
          type: object
          title: By Status
          description: Executor count by status
        pnl_total_quote:
          type: number
          title: Pnl Total Quote
          description: Realized PnL from completed executors in quote currency
        unrealized_pnl_quote:
          type: number
          title: Unrealized Pnl Quote
          description: Unrealized PnL from active executors and position holds
        global_pnl_quote:
          type: number
          title: Global Pnl Quote
          description: Global PnL (realized + unrealized)
        pnl_pct_avg:
          type: number
          title: Pnl Pct Avg
          description: Average PnL percentage across completed executors
        fees_total_quote:
          type: number
          title: Fees Total Quote
          description: Total cumulative fees in quote currency
        volume_total_quote:
          type: number
          title: Volume Total Quote
          description: >-
            Total volume traded in quote currency. Volume GENERATED, not capital
            deployed: an LP position's deposit is excluded, and the volume its
            range actually saw is derived from the fees it earned.
        win_rate:
          type: number
          title: Win Rate
          description: 'Win rate: fraction of completed executors with positive PnL'
        sharpe_ratio:
          anyOf:
            - type: number
            - type: 'null'
          title: Sharpe Ratio
          description: Sharpe ratio of PnL returns (null if <2 executors)
        by_type:
          items:
            $ref: '#/components/schemas/ExecutorTypeBreakdown'
          type: array
          title: By Type
          description: Performance breakdown by executor type
        active_positions:
          type: integer
          title: Active Positions
          description: Number of active position holds
      type: object
      required:
        - total_executors
        - by_status
        - pnl_total_quote
        - unrealized_pnl_quote
        - global_pnl_quote
        - pnl_pct_avg
        - fees_total_quote
        - volume_total_quote
        - win_rate
        - by_type
        - active_positions
      title: PerformanceReportResponse
      description: Performance report for executors, optionally filtered by controller_id.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ExecutorTypeBreakdown:
      properties:
        executor_type:
          type: string
          title: Executor Type
          description: Executor type name
        total:
          type: integer
          title: Total
          description: Total executors of this type
        completed:
          type: integer
          title: Completed
          description: Completed executors
        running:
          type: integer
          title: Running
          description: Currently running executors
        pnl_quote:
          type: number
          title: Pnl Quote
          description: Net PnL in quote currency
        volume_quote:
          type: number
          title: Volume Quote
          description: >-
            Total volume traded in quote currency for this executor type. Volume
            GENERATED, not capital deployed.
        fees_quote:
          type: number
          title: Fees Quote
          description: Cumulative fees in quote currency
      type: object
      required:
        - executor_type
        - total
        - completed
        - running
        - pnl_quote
        - volume_quote
        - fees_quote
      title: ExecutorTypeBreakdown
      description: Performance breakdown for a single executor type.
    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

````