API Reference

Health Check — GET /health

A simple unauthenticated endpoint to verify that the TTS service is running and reachable.


Endpoint

PROPERTYVALUE
MethodGET
URLhttps://tts.shunyalabs.ai/health
AuthNone required

Example

terminal
curl https://tts.shunyalabs.ai/health

Response

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.