Skip to main content
Confirms the service is ready to serve traffic — specifically, that its database is reachable. Use this for load-balancer / deploy health checks so traffic is only routed to instances that can actually serve it.
/readyz
curl -sS -i https://api.storytime.io/readyz
200
{
    "ok": true
}
503
{
    "ok": false,
    "code": "NOT_READY",
    "message": "db unreachable"
}