Health
Health check endpoints for monitoring and liveness probes.
GET/healthNo Auth
Full health check including database connectivity and key management status.
Response
{
"status": "healthy",
"checks": {
"database": "ok",
"jwks": "ok"
},
"timestamp": "2026-02-01T10:00:00Z"
}GET/health/liveNo Auth
Simple liveness check. Returns 200 if the worker is running.
Response
{
"status": "ok"
}Usage
- Use
/health/livefor Kubernetes/container liveness probes (fast, no dependencies) - Use
/healthfor readiness checks (verifies database and JWKS connectivity)