> ## 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 Bot Run Stats

> Get statistics about bot runs.

Args:
    db_manager: Database manager dependency

Returns:
    Bot run statistics



## OpenAPI

````yaml /api-reference/openapi.json get /bot-orchestration/bot-runs/stats
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:
  /bot-orchestration/bot-runs/stats:
    get:
      tags:
        - Bot Orchestration
      summary: Get Bot Run Stats
      description: |-
        Get statistics about bot runs.

        Args:
            db_manager: Database manager dependency

        Returns:
            Bot run statistics
      operationId: get_bot_run_stats_bot_orchestration_bot_runs_stats_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBasic: []
components:
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````