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

# List Strategies



## OpenAPI

````yaml get /v1/paper/strategies
openapi: 3.1.0
info:
  title: PolyQuantLab API
  version: 0.1.0
  description: >-
    Sub-second Polymarket orderbook data, walk-the-book backtests, paper
    trading, and the live arb audit. Same endpoints the PolyQuantLab dashboard
    uses internally — Bearer-token auth, JSON-over-HTTPS, predictable
    pagination.
  contact:
    email: contact@polyquantlab.com
    url: https://polyquantlab.com/contact
  license:
    name: Proprietary
servers:
  - url: https://api.polyquantlab.com
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /v1/paper/strategies:
    get:
      tags:
        - paper
      summary: List Strategies
      operationId: list_strategies_v1_paper_strategies_get
      parameters:
        - name: only_active
          in: query
          required: false
          schema:
            type: boolean
            default: false
            title: Only Active
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListStrategiesVPaperStrategiesGetResponse'
              example:
                strategies:
                  - paper_strategy_id: ps_4821a0e0
                    name: BTC 5m below 0.3 — buy YES
                    active: true
                    created_at: '2026-06-04T12:14:00+00:00'
                    strategy:
                      type: threshold_entry
                      threshold: 0.3
                      direction: below
                      side: buy_yes
                    universe:
                      ticker: BTC
                      event_type: 5m
                    net_pnl: 4.21
                    open_positions: 1
                    closed_positions: 18
                count: 1
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ListStrategiesVPaperStrategiesGetResponse:
      type: object
      properties:
        strategies:
          type: array
          items:
            type: object
            properties:
              paper_strategy_id:
                type: string
              name:
                type: string
              active:
                type: boolean
              created_at:
                type: string
                format: date-time
              strategy:
                type: object
                properties:
                  type:
                    type: string
                  threshold:
                    type: number
                    format: double
                  direction:
                    type: string
                    enum:
                      - BUY_YES
                      - BUY_NO
                      - BUY_BOTH
                    description: >-
                      Which side to buy. `BUY_BOTH` only used for `tier=logical`
                      (buy both legs for guaranteed payoff).
                  side:
                    type: string
                    enum:
                      - buy_yes
                      - sell_yes
                      - buy_no
                      - sell_no
                      - BUY_YES
                      - SELL_YES
                      - BUY_NO
                      - SELL_NO
                required:
                  - type
                  - threshold
                  - direction
                  - side
              universe:
                type: object
                properties:
                  ticker:
                    type: string
                    enum:
                      - BTC
                      - ETH
                      - SOL
                  event_type:
                    type: string
                    enum:
                      - 5m
                      - 15m
                      - 1h
                      - 4h
                      - daily_up_down
                required:
                  - ticker
                  - event_type
              net_pnl:
                type: number
                format: double
              open_positions:
                type: integer
                format: int64
              closed_positions:
                type: integer
                format: int64
            required:
              - paper_strategy_id
              - name
              - active
              - created_at
              - strategy
              - universe
              - net_pnl
              - open_positions
              - closed_positions
        count:
          type: integer
          format: int64
      required:
        - strategies
        - count
    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:
    ApiKeyAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````