Readiness probe
GET/api/v1/health/ready
Readiness probe — can we serve traffic?
Pings the database and the cache; returns 503 with a descriptive status
string when either check fails.
- Public endpoint (no auth required).
- Intended for the container orchestrator / the load balancer readiness checks that must gate traffic until the process can actually serve.
Responses
- 200
- 400
- 404
- 409
- 422
- 429
- 500
- 503
All required dependencies reachable.
Bad request — malformed input or failed validation.
Resource not found, or hidden for tenant-enumeration safety (the caller lacks permission to know whether the resource exists).
Conflict — the current resource state does not allow this operation (e.g. assessment already started, email already in use).
Semantic validation failure — request shape was valid but contents were not.
Too many requests — rate limited. Retry after the window resets.
Internal server error — unexpected failure.
A required dependency (the database or the cache) is unavailable.