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

> Get bot runs with optional filtering.

Args:
    bot_name: Filter by bot name
    account_name: Filter by account name
    strategy_type: Filter by strategy type (script or controller)
    strategy_name: Filter by strategy name
    run_status: Filter by run status (CREATED, RUNNING, STOPPED, ERROR)
    deployment_status: Filter by deployment status (DEPLOYED, FAILED, ARCHIVED)
    limit: Maximum number of results to return
    offset: Number of results to skip
    db_manager: Database manager dependency

Returns:
    List of bot runs with their details



## OpenAPI

````yaml /api-reference/openapi.json get /bot-orchestration/bot-runs
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:
    get:
      tags:
        - Bot Orchestration
      summary: Get Bot Runs
      description: |-
        Get bot runs with optional filtering.

        Args:
            bot_name: Filter by bot name
            account_name: Filter by account name
            strategy_type: Filter by strategy type (script or controller)
            strategy_name: Filter by strategy name
            run_status: Filter by run status (CREATED, RUNNING, STOPPED, ERROR)
            deployment_status: Filter by deployment status (DEPLOYED, FAILED, ARCHIVED)
            limit: Maximum number of results to return
            offset: Number of results to skip
            db_manager: Database manager dependency

        Returns:
            List of bot runs with their details
      operationId: get_bot_runs_bot_orchestration_bot_runs_get
      parameters:
        - name: bot_name
          in: query
          required: false
          schema:
            type: string
            title: Bot Name
        - name: account_name
          in: query
          required: false
          schema:
            type: string
            title: Account Name
        - name: strategy_type
          in: query
          required: false
          schema:
            type: string
            title: Strategy Type
        - name: strategy_name
          in: query
          required: false
          schema:
            type: string
            title: Strategy Name
        - name: run_status
          in: query
          required: false
          schema:
            type: string
            title: Run Status
        - name: deployment_status
          in: query
          required: false
          schema:
            type: string
            title: Deployment Status
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 100
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            default: 0
            title: Offset
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBasic: []
components:
  schemas:
    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

````