Skip to content
health

Readiness probe

GET
/health/ready
curl --request GET \
--url https://aggregator.example.com/health/ready

Returns 200 only when Postgres and Redis are both reachable; 503 otherwise.

Default Response

Media typeapplication/json
object
status
required
string
Allowed values: ready
Example
{
"status": "ready"
}

Default Response

Media typeapplication/json
object
status
required
string
Allowed values: not_ready
checks
required
object
postgres
required
string
redis
required
string
Example
{
"status": "not_ready"
}