ElevenLabs Multilingual V2
ElevenLabs' most natural-sounding TTS model. Supports 29 languages with emotional range.
1x
Examples
See what ElevenLabs Multilingual V2 can generate
Narration
Input text:
"Welcome to the future of artificial intelligence. In this episode, we explore how large language models are reshaping industries from healthcare to creative arts, and what it means for the next decade of human progress."
Try it in the playground above
Podcast Intro
Input text:
"Hey everyone, welcome back to another episode of Tech Unfiltered! I'm your host, and today we have an incredible guest who just shipped one of the most downloaded apps of the year. Grab your coffee, because this conversation is going to be a wild ride."
Try it in the playground above
Pricing
API Integration
Use our OpenAI-compatible API to integrate ElevenLabs Multilingual V2 into your application.
npm install railwailimport railwail from "railwail";
const rw = railwail("YOUR_API_KEY");
// Simple — just pass a string
const reply = await rw.run("elevenlabs-multilingual-v2", "Hello! What can you do?");
console.log(reply);
// With message history
const reply2 = await rw.run("elevenlabs-multilingual-v2", [
{ role: "system", content: "You are a helpful assistant." },
{ role: "user", content: "Explain quantum computing simply." },
]);
console.log(reply2);
// Full response with usage info
const res = await rw.chat("elevenlabs-multilingual-v2", [
{ role: "user", content: "Hello!" },
], { temperature: 0.7, max_tokens: 500 });
console.log(res.choices[0].message.content);
console.log(res.usage);Start using ElevenLabs Multilingual V2 today
Get started with free credits. No credit card required. Access ElevenLabs Multilingual V2 and 100+ other models through a single API.