稳定生产路由
Multi-character dialogue in a single request
ElevenLabs V3 已通过 API in One 接入真实生产路由 /api/v1/audio/speech,后端节点为 node58。一个 API Key 即可调用并按成功请求计费。
以下能力来自当前已接入的模型配置和后端路由,不展示未上线 API。
Multi-character dialogue in a single request
No separate ElevenLabs subscription needed
30+ languages with automatic language detection
Same API key for TTS, images, video, music, and chat
浏览器端只调用同源 API,服务端 BFF 再转发到对应 Worker。
dialoguearrayArray of dialogue items: [{text: "...", voice: "..."}]. Voice is optional.
必填stabilitynumberVoice stability (0–1). Lower = more variation, higher = more consistent.
可选 · 默认 0.5language_codestringLanguage code (e.g. en, zh, ja) or "auto" for detection
可选 · 默认 auto{
"endpoint": "/api/v1/audio/speech",
"headers": {
"Authorization": "Bearer <API_KEY>",
"Content-Type": "application/json"
},
"body": {
"model": "elevenlabs-v3",
"dialogue": [
{
"text": "Hello, welcome to API in One.",
"voice": "narrator"
},
{
"text": "Thank you! Tell me more about this platform.",
"voice": "user"
}
],
"stability": 0.5,
"language_code": "auto"
}
}图像、视频、音频和工具任务创建后,使用真实任务端点查询结果。
GET/api/v1/tasks/{task_id}查询生成任务状态和结果。1 credit minimum (~$0.01), then 28 credits per 1000 chars (~$0.28)
这些场景可通过当前模型和对应后端节点实现。
Generate multi-character dialogue for podcasts and audiobooks
Build voice-enabled chatbots and virtual assistants
Create audiobook content with multiple narrators
Generate multilingual voice content for global audiences
Pricing is 28 credits per 1000 characters (~$0.28). The final cost scales with text length.
ElevenLabs V3 supports 30+ languages. Set language_code to "auto" for automatic detection or specify a language code.
Yes. The dialogue parameter accepts an array of objects, each with text and an optional voice. This enables multi-character conversations.
The stability parameter (0–1) controls voice consistency. Lower values (0.3) add more variation, higher values (0.8) produce more consistent output. Default is 0.5.