> ## 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 Active Bots Status

> Get the status of all active bots.

Args:
    bots_manager: Bot orchestrator service dependency

Returns:
    Dictionary with status and data containing all active bot statuses



## OpenAPI

````yaml /api-reference/openapi.json get /bot-orchestration/status
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/status:
    get:
      tags:
        - Bot Orchestration
      summary: Get Active Bots Status
      description: |-
        Get the status of all active bots.

        Args:
            bots_manager: Bot orchestrator service dependency

        Returns:
            Dictionary with status and data containing all active bot statuses
      operationId: get_active_bots_status_bot_orchestration_status_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBasic: []
components:
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````