> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bloodydash.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Get all strategies

> Retrieves a list of all strategies.



## OpenAPI

````yaml /api/swagger.json get /strategies/
openapi: 3.0.1
info:
  title: BLOOD-V3 API
  contact: {}
  version: 0.0.1
servers:
  - url: //localhost:50000/api/v1
security: []
paths:
  /strategies/:
    get:
      tags:
        - Strategies
      summary: Get all strategies
      description: Retrieves a list of all strategies.
      responses:
        '200':
          description: List of strategies
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/handlers.getStrategiesResponse'
        '500':
          description: Internal server error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/handlers.ErrorResponse'
components:
  schemas:
    handlers.getStrategiesResponse:
      type: object
      properties:
        strategies:
          type: array
          items:
            $ref: '#/components/schemas/models.Strategy'
    handlers.ErrorResponse:
      type: object
      properties:
        error:
          type: string
    models.Strategy:
      type: object
      properties:
        id:
          type: string
        meta:
          type: array
          items:
            $ref: '#/components/schemas/models.StrategyMetadata'
    models.StrategyMetadata:
      type: object
      properties:
        dev_sell_percentage:
          type: string
        dev_sell_percentage_to_sell:
          type: string
        inactivity_percentage:
          type: string
        inactivity_percentage_to_sell:
          type: string
        inactivity_timeout_ms:
          type: string
        sl_percentage:
          type: string
        sl_percentage_to_sell:
          type: string
        timeout_ms:
          type: string
        timeout_percentage_to_sell:
          type: string
        tp_percentage:
          type: string
        tp_percentage_to_sell:
          type: string
        trailing_sl_percentage:
          type: string
        trailing_sl_percentage_to_sell:
          type: string

````