Health API
These endpoints are intended for infrastructure checks and do not require a bearer token.
Base URL: https://api.hestialabs.in/v1
Endpointsâ
| Method | Path | Summary |
|---|---|---|
GET | /health/live | Liveness Probe |
GET | /health/ready | Readiness Probe |
Liveness Probeâ
GET /health/live
Check if the service is running
Authentication: No authentication required
Parametersâ
None.
Responsesâ
| Status | Description |
|---|---|
200 | Service is alive |
Example 200 responseâ
{
"status": "alive",
"uptime": 12345.67
}
Readiness Probeâ
GET /health/ready
Check if the service can serve traffic (Redis + DB check)
Authentication: No authentication required
Parametersâ
None.
Responsesâ
| Status | Description |
|---|---|
200 | Service is ready |
503 | Service not ready |
Example 200 responseâ
{
"status": "ready"
}
Example 503 responseâ
{
"status": "string",
"checks": {}
}