> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sabi-tts-app.dev.neuralace.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Service health

> Liveness and uptime of the gateway. No authentication required.

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

<ResponseField name="ok" type="boolean">
  `true` when the gateway is serving.
</ResponseField>

<ResponseField name="uptime_s" type="number">
  Seconds since the gateway process started. Resets on deploys and restarts.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://sabi-tts.dev.neuralace.co/health"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "ok": true,
    "uptime_s": 86400
  }
  ```
</ResponseExample>
