curl "https://api.tts.runatlas.com/health"
{
"ok": true,
"uptime_s": 86400
}
API reference
Service health
Liveness and uptime of the gateway. No authentication required.
GET
/
health
curl "https://api.tts.runatlas.com/health"
{
"ok": true,
"uptime_s": 86400
}
A public liveness endpoint for monitors and load balancers. Returns
200 with the
gateway’s current uptime; anything else means the service is down or restarting.
Response
boolean
true when the gateway is serving.number
Seconds since the gateway process started. Resets on deploys and restarts.
curl "https://api.tts.runatlas.com/health"
{
"ok": true,
"uptime_s": 86400
}