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

# List Backtest Tasks

> List all backtest tasks with their status (results excluded for brevity).



## OpenAPI

````yaml /api-reference/openapi.json get /backtesting/tasks
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:
  /backtesting/tasks:
    get:
      tags:
        - Backtesting
      summary: List Backtest Tasks
      description: >-
        List all backtest tasks with their status (results excluded for
        brevity).
      operationId: list_backtest_tasks_backtesting_tasks_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBasic: []
components:
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````