api.health
Health and readiness endpoints.
get_health
@router.get("/api/health", response_model=HealthResponse)
def get_health() -> HealthResponse
Return a liveness payload for container and platform probes.
get_ready
@router.get("/api/ready", response_model=ReadyResponse)
def get_ready() -> ReadyResponse | JSONResponse
Return readiness information based on whether the config snapshot is readable.
// was this page useful?