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

# Health

> Liveness probe — always returns 200 if the process is up.

Suitable for Railway / Docker HEALTHCHECK and load-balancer pings.
Does not perform any subsystem checks so it never leaks internal
hostnames, DSN fragments, or exception details.  Use /health/detailed
(admin-gated) for rich subsystem diagnostics, or /ready (public)
for a strict ready-to-serve check.



## OpenAPI

````yaml /openapi.json get /health
openapi: 3.1.0
info:
  description: Change Impact Engine for multi-repo systems
  title: Riftmap
  version: 1.12.3
servers: []
security: []
paths:
  /health:
    get:
      tags:
        - meta
      summary: Health
      description: |-
        Liveness probe — always returns 200 if the process is up.

        Suitable for Railway / Docker HEALTHCHECK and load-balancer pings.
        Does not perform any subsystem checks so it never leaks internal
        hostnames, DSN fragments, or exception details.  Use /health/detailed
        (admin-gated) for rich subsystem diagnostics, or /ready (public)
        for a strict ready-to-serve check.
      operationId: health_health_get
      responses:
        '200':
          content:
            application/json:
              schema: {}
          description: Successful Response

````