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

# Get Polymarket Live Board

> Single-shot dashboard payload for the Live Terminal page.

For each event_type (5m/15m/1h/4h/daily_up_down) returns the
currently-trading market for the given ticker — defined as
`is_active AND resolution_at > now()`, ordered by soonest
resolution — together with its latest orderbook snapshot.

The Next.js dashboard polls this every 5 s.  One call replaces
what would otherwise be ~5 separate `/v1/markets/{id}/orderbook`
fetches per refresh.



## OpenAPI

````yaml get /v1/polymarket/live-board
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/polymarket/live-board:
    get:
      summary: Get Polymarket Live Board
      description: |-
        Single-shot dashboard payload for the Live Terminal page.

        For each event_type (5m/15m/1h/4h/daily_up_down) returns the
        currently-trading market for the given ticker — defined as
        `is_active AND resolution_at > now()`, ordered by soonest
        resolution — together with its latest orderbook snapshot.

        The Next.js dashboard polls this every 5 s.  One call replaces
        what would otherwise be ~5 separate `/v1/markets/{id}/orderbook`
        fetches per refresh.
      operationId: get_polymarket_live_board_v1_polymarket_live_board_get
      parameters:
        - name: ticker
          in: query
          required: true
          schema:
            type: string
            examples:
              - BTC
              - ETH
              - SOL
            title: Ticker
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/GetPolymarketLiveBoardVPolymarketLiveBoardGetResponse
              example:
                ticker: BTC
                as_of: '2026-06-06T03:58:12Z'
                boards:
                  - event_type: 5m
                    market_id: 0x4a8f31...c2
                    question: Will Bitcoin price be above $109,500 at 04:00 UTC?
                    polymarket_slug: bitcoin-up-or-down-june-6-4am-et
                    resolution_at: '2026-06-06T04:00:00+00:00'
                    strike_price: 109500
                    yes_bid: 0.81
                    yes_ask: 0.82
                    no_bid: 0.18
                    no_ask: 0.19
                    underlying_price: 109842.5
                    volume_24h: 14820.5
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GetPolymarketLiveBoardVPolymarketLiveBoardGetResponse:
      type: object
      properties:
        ticker:
          type: string
          enum:
            - BTC
            - ETH
            - SOL
        as_of:
          type: string
          format: date-time
          description: Server timestamp when the response was generated.
        boards:
          type: array
          items:
            type: object
            properties:
              event_type:
                type: string
                enum:
                  - 5m
                  - 15m
                  - 1h
                  - 4h
                  - daily_up_down
              market_id:
                type: string
                description: Polymarket market identifier (hex 0x…).
              question:
                type: string
              polymarket_slug:
                type: string
                description: URL slug → polymarket.com/event/{slug}
              resolution_at:
                type: string
                format: date-time
                description: When the market settles on Polymarket.
              strike_price:
                type: number
                format: double
                description: Polymarket UP/DOWN threshold.
              yes_bid:
                type: number
                format: double
              yes_ask:
                type: number
                format: double
              no_bid:
                type: number
                format: double
              no_ask:
                type: number
                format: double
              underlying_price:
                type: number
                format: double
                description: Current spot price of the underlying coin at this snapshot.
              volume_24h:
                type: number
                format: double
            required:
              - event_type
              - market_id
              - question
              - polymarket_slug
              - resolution_at
              - strike_price
              - yes_bid
              - yes_ask
              - no_bid
              - no_ask
              - underlying_price
              - volume_24h
      required:
        - ticker
        - as_of
        - boards
    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

````