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

> List all available database files in the system.

Returns:
    List of database file paths



## OpenAPI

````yaml /api-reference/openapi.json get /archived-bots
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:
  /archived-bots:
    get:
      tags:
        - Archived Bots
      summary: List Databases
      description: |-
        List all available database files in the system.

        Returns:
            List of database file paths
      operationId: list_databases_archived_bots_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  type: string
                type: array
                title: Response List Databases Archived Bots Get
      security:
        - HTTPBasic: []
components:
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````