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

# Health

> Health check endpoint for load balancers and monitoring.

Returns:
    Status dictionary indicating service availability.



## OpenAPI

````yaml https://api.pragmatiks.io/openapi.json get /health
openapi: 3.1.0
info:
  title: Pragma API
  version: 0.1.0
servers: []
security: []
paths:
  /health:
    get:
      summary: Health
      description: |-
        Health check endpoint for load balancers and monitoring.

        Returns:
            Status dictionary indicating service availability.
      operationId: health
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties:
                  type: string
                type: object
                title: Response Health

````