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

# Healthcheck

> Report the API health for bootstrap validation.



## OpenAPI

````yaml /generated/api.openapi.json get /healthz
openapi: 3.1.0
info:
  title: Kynasmith Public API
  version: 0.1.0
servers: []
security: []
paths:
  /healthz:
    get:
      tags:
        - health
      summary: Healthcheck
      description: Report the API health for bootstrap validation.
      operationId: healthcheck_healthz_get
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthResponse'
          description: Successful Response
components:
  schemas:
    HealthResponse:
      description: Bootstrap health payload exposed by the API role.
      properties:
        environment:
          description: Resolved runtime environment name.
          title: Environment
          type: string
        role:
          description: Role name for the responding service.
          title: Role
          type: string
        status:
          const: ok
          description: Health status marker.
          title: Status
          type: string
      required:
        - status
        - environment
        - role
      title: HealthResponse
      type: object

````