{
  "name": "TTS API",
  "version": "0.1.0",
  "auth": "Supply the API key via x-api-key header, Authorization: Bearer <key>, or ?api_key= query parameter.",
  "endpoints": [
    {
      "method": "GET",
      "path": "https://text-to-speech.ornzora.eu.cc/voices",
      "description": "List all available voices and languages."
    },
    {
      "method": "GET",
      "path": "https://text-to-speech.ornzora.eu.cc/tts",
      "query": "?text=&voice=&lang=&reverb=",
      "description": "Synthesize speech from text via query parameters."
    },
    {
      "method": "POST",
      "path": "https://text-to-speech.ornzora.eu.cc/tts",
      "body": "{ text, voice?, lang?, reverb? }",
      "description": "Synthesize speech from text via request body."
    }
  ]
}