ElevenLabs Multilingual V2
ElevenLabs' most natural-sounding TTS model. Supports 29 languages with emotional range.
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."
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."
1.0x
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);Free credits on sign-up
Related Models
View all Text-to-SpeechElevenLabs Turbo v2.5
Low-latency TTS model from ElevenLabs. Optimized for real-time applications with natural-sounding output.
OpenAI TTS-1
OpenAI's text-to-speech model. Six built-in voices with natural intonation.
OpenAI TTS-1 HD
OpenAI's high-definition TTS model. Better quality for production use cases.
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.