Health Checks

Built-in health check endpoints for container orchestration (Kubernetes, Docker Compose, etc.).

Endpoints

GET /health

Basic liveness check — confirms the server is responding. Response (200):
Response (503 if server is shutting down):

GET /healthz

Detailed liveness check with version info. Response (200):

GET /ready

Readiness check — confirms all dependencies are available. Response (200):
Response (503 if not ready):

Kubernetes Configuration

Docker Compose

Error Responses

If a dependency is down:
HTTP status: 503 Service Unavailable