Health
A liveness and dependency check. No authentication, and it lives at the root - not under
/api/v1.
GET /health
{ "status": "ok", "redis": "connected", "postgres": "connected" }
If a dependency is down, it returns 503 with status: "degraded" and the failing dependency
marked disconnected:
{ "status": "degraded", "redis": "disconnected", "postgres": "connected" }
Use it for uptime checks and load-balancer health probes.