Health Check¶
Liveness and readiness probe endpoint for monitoring and orchestration (e.g., Kubernetes). This endpoint requires no authentication and is exempt from rate limiting.
GET /health¶
Check the API server and its dependencies.
| Auth | None |
| Rate limit | None (exempt) |
Response 200 OK -- healthy¶
Returned when the server and all dependencies are operational.
Response 503 Service Unavailable -- unhealthy¶
Returned when one or more dependencies are down.
Response fields¶
| Field | Type | Description |
|---|---|---|
status |
string |
"ok" when healthy, "error" when degraded |
info |
object |
Present on success; maps dependency names to their status |
error |
object |
Present on failure; maps failed dependency names to their status |
Usage¶
Kubernetes liveness probe:
Kubernetes readiness probe: