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

# Delete Bot Run

> Delete a bot run record by ID.

Args:
    bot_run_id: ID of the bot run to delete
    bots_manager: Bot orchestrator service dependency

Returns:
    Confirmation of deletion

Raises:
    HTTPException: 404 if bot run not found



## OpenAPI

````yaml /api-reference/openapi.json delete /bot-orchestration/bot-runs/{bot_run_id}
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/{bot_run_id}:
    delete:
      tags:
        - Bot Orchestration
      summary: Delete Bot Run
      description: |-
        Delete a bot run record by ID.

        Args:
            bot_run_id: ID of the bot run to delete
            bots_manager: Bot orchestrator service dependency

        Returns:
            Confirmation of deletion

        Raises:
            HTTPException: 404 if bot run not found
      operationId: delete_bot_run_bot_orchestration_bot_runs__bot_run_id__delete
      parameters:
        - name: bot_run_id
          in: path
          required: true
          schema:
            type: integer
            title: Bot Run Id
      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

````