Use these endpoints to check the connectivity of the Lokutor service and discover available voices and models.
Health Check
Verify if the API and its underlying services (database, synthesis engine) are operational.
curl -X GET "https://api.lokutor.com/api/status/health" \
-H "Authorization: Bearer YOUR_API_KEY"
Available Voices
List all available voice identifiers and their descriptions. Voices are grouped by characteristics and gender.
curl -X GET "https://api.lokutor.com/api/status/voices" \
-H "Authorization: Bearer YOUR_API_KEY"
Voice availability is dynamic. We recommend caching this list for up to 24 hours to minimize redundant calls.
Model Registry
Get information about the underlying AI models (like Versa 1.0) powering our synthesis.
curl -X GET "https://api.lokutor.com/api/status/models" \
-H "Authorization: Bearer YOUR_API_KEY"