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

> List all available scripts.

Returns:
    List of script names (without .py extension)



## OpenAPI

````yaml /api-reference/openapi.json get /scripts
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:
  /scripts:
    get:
      tags:
        - Scripts
      summary: List Scripts
      description: |-
        List all available scripts.

        Returns:
            List of script names (without .py extension)
      operationId: list_scripts_scripts_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  type: string
                type: array
                title: Response List Scripts Scripts Get
      security:
        - HTTPBasic: []
components:
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````