List selectable voices
GET /v1/voice/voices — The voice-picker option list: official preset voices (ElevenLabs + OpenAI, always available) plus the user's own ElevenL
GET /v1/voice/voices
The voice-picker option list: official preset voices (ElevenLabs + OpenAI, always available) plus the user's own ElevenLabs voices fetched live when a key is configured. Each item carries id, name, provider, and group (preset or custom). The chosen id is saved separately to the voice.ttsVoice runtime preference.
| Method | GET |
| Path | /v1/voice/voices |
| Auth | Authorization: Bearer <token> required when GATEWAY_AUTH_TOKEN is set |
| Category | voice |
Response body
{ "ok": true, "voices": [ { "id": "EpMOHcveL15wHOy6xt7T", "name": "Minara", "provider": "elevenlabs", "group": "preset" }, { "id": "alloy", "name": "Alloy", "provider": "openai", "group": "preset" } ] }