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

# Health



## OpenAPI

````yaml get /health
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:
  /health:
    get:
      summary: Health
      operationId: health_health_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthHealthGetResponse'
              example:
                ok: true
                latest_snapshot: '2026-06-06T03:54:11.842913+00:00'
                snapshots_last_5min: 1842
components:
  schemas:
    HealthHealthGetResponse:
      type: object
      properties:
        ok:
          type: boolean
        latest_snapshot:
          type: string
          format: date-time
        snapshots_last_5min:
          type: integer
          format: int64
      required:
        - ok
        - latest_snapshot
        - snapshots_last_5min
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````