API Reference
Health Check — GET /health
A simple unauthenticated endpoint to verify that the TTS service is running and reachable.
Endpoint
| PROPERTY | VALUE |
|---|---|
| Method | GET |
| URL | https://tts.shunyalabs.ai/health |
| Auth | None required |
Example
terminal
curl https://tts.shunyalabs.ai/healthResponse
A successful response returns HTTP 200 with a JSON body:
json
{
"status": "ok",
"service": "tts",
"version": "1.0.0"
}Usage
- Use this endpoint in load-balancer health probes and uptime monitors.
- If the response is anything other than
200, the service may be starting up or experiencing issues.