The page above polls /api/health. Same endpoint our infrastructure monitors hit. Returns 200 with a JSON body when both Postgres and Redis are reachable, 503 otherwise. No auth, no rate limit.
# Cron / uptime monitor
curl -fsS https://vyrable.ai/api/health > /dev/null && echo OK
# Sample response
{
"status": "ok",
"latencyMs": 23,
"uptime": 184234,
"timestamp": "2026-05-06T22:00:00.000Z",
"components": {
"db": { "ok": true, "latencyMs": 4 },
"redis": { "ok": true, "latencyMs": 6 }
}
}