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

# Health check

> Returns the current status and version of the API.



## OpenAPI

````yaml /openapi.json get /health
openapi: 3.1.0
info:
  title: Hamlet Public API
  version: 0.1.0
  description: >-
    Public API for programmatic access to Hamlet civic intelligence data:
    government meetings, transcripts, and related records from local
    governments.
servers:
  - url: https://api.myhamlet.com
    description: Production
security: []
paths:
  /health:
    get:
      tags:
        - System
      summary: Health check
      description: Returns the current status and version of the API.
      responses:
        '200':
          description: The API is healthy.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Health'
components:
  schemas:
    Health:
      type: object
      properties:
        status:
          type: string
          enum:
            - ok
        version:
          type: string
          example: 0.1.0
        timestamp:
          type: string
          format: date-time
          example: '2026-01-01T00:00:00.000Z'
      required:
        - status
        - version
        - timestamp

````