API Referencegeneral
Liveness Probe
Kubernetes liveness probe endpoint. Returns 200 if the service process is running. Does not check dependencies. Returns: Simple alive status.
Response Body
application/json
curl -X get "http://localhost:8000/api/v1/health/live"{
"property1": "string",
"property2": "string"
}Full Health Check
Full health check endpoint with detailed dependency information. Returns complete health status including all registered dependencies, their latencies, circuit breaker states, and any error messages. Args: request: FastAPI request object to access app state. response: FastAPI response object to set status code. Returns: Detailed health status with all dependency information.
Liveness Probe
Kubernetes liveness probe endpoint. Returns 200 if the service process is running. Does not check dependencies. Returns: Simple alive status.

