음성 설정 가져오기
GET /v1/voice/settings: 현재 사용자가 조정할 수 있는 음성 합성 설정입니다.
GET /v1/voice/settings
현재 사용자가 조정할 수 있는 음성 합성 설정입니다. provider=openai를 전달하면 음성/모델/속도/지침을, provider=elevenlabs를 전달하면 ElevenLabs의 음성/모델/튜닝 필드를 가져옵니다. provider를 생략하면 이전 ElevenLabs 호환 형태를 반환합니다.
| 메서드 | GET |
| 경로 | /v1/voice/settings |
| 인증 | GATEWAY_AUTH_TOKEN이 설정된 경우 Authorization: Bearer <token> 필요 |
| 카테고리 | voice |
응답 본문
{ "ok": true, "settings": { "stability": 0.5, "similarityBoost": 0.75, "style": 0.3, "speakerBoost": true, "speed": 0.7 } }