Skip to main content

Health API

These endpoints are intended for infrastructure checks and do not require a bearer token.

Base URL: https://api.hestialabs.in/v1

Endpoints​

MethodPathSummary
GET/health/liveLiveness Probe
GET/health/readyReadiness Probe

Liveness Probe​

GET /health/live

Check if the service is running

Authentication: No authentication required

Parameters​

None.

Responses​

StatusDescription
200Service 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​

StatusDescription
200Service is ready
503Service not ready

Example 200 response​

{
"status": "ready"
}

Example 503 response​

{
"status": "string",
"checks": {}
}