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

# Public Healthcheck

> Public health check endpoint for SDK pre-flight checks.



## OpenAPI

````yaml /generated/api.openapi.json get /api/health
openapi: 3.1.0
info:
  title: Kynasmith Public API
  version: 0.1.0
servers: []
security: []
paths:
  /api/health:
    get:
      tags:
        - health
      summary: Public Healthcheck
      description: Public health check endpoint for SDK pre-flight checks.
      operationId: public_healthcheck_api_health_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

````