# eleven_multilingual_v2 > Multilingual voice cloning with lifelike speech, supporting 29 languages, natural emotional range, and high fidelity audio output. ## Overview - **Model ID**: `eleven_multilingual_v2` - **Category**: voice cloning - **Provider**: elevenlabs - **Status**: model_ready - **Screenshot**: `https://assets.modelslab.com/generations/35797b64-cfdd-460c-94cc-3501b4a67881.webp ` ## API Information This model can be used via our HTTP API. See the API documentation and usage examples below. ### Endpoint - **URL**: `https://modelslab.com/api/v7/voice/text-to-speech` - **Method**: POST ### Parameters - **`prompt`** (required): Prompt for generating audio - Type: textarea - **`voice_id`** (required): Voice id - Type: select (options: JBFqnCBsd6RMkjVDRZzb, Olivia, CrSantos, Egor , Le Thanh Sang , Lucy Fennek, Deshna Sogam, Bunny, Roy Neace, Sead, Joseph, Victoria, Axel, Arka, Jia Wei, Jordan Rapp, Ozzie, Zoe, Eli, Oscar Bardem, Nila - Tamil, Meera - Tamil, Prachi - Tamil, Rama - Tamil, Madsri - Tamil, Laxman - Tamil, Seturam - Marathi) ## Usage Examples ### cURL ```bash curl --request POST \ --url https://modelslab.com/api/v7/voice/text-to-speech \ --header "Content-Type: application/json" \ --data '{ "key": "YOUR_API_KEY", "model_id": "eleven_multilingual_v2", "prompt": "Hey, love. I just wanted to say… you're doing beautifully. Even if today felt a little messy, even if you didn’t get everything done that’s okay. You’re still growing, still trying, still shining. I see your heart, your effort, your gentleness. And I just hope you can feel how much you're loved. So rest easy now. You’re safe, you’re enough, and I’m proud of you more than words can say.", "voice_id": "M7baJQBjzMsrxxZ796H6" }' ``` ### Python ```python import requests response = requests.post( "https://modelslab.com/api/v7/voice/text-to-speech", headers={ "Content-Type": "application/json" }, json={ "key": "YOUR_API_KEY", "model_id": "eleven_multilingual_v2", "prompt": "Hey, love. I just wanted to say… you're doing beautifully. Even if today felt a little messy, even if you didn’t get everything done that’s okay. You’re still growing, still trying, still shining. I see your heart, your effort, your gentleness. And I just hope you can feel how much you're loved. So rest easy now. You’re safe, you’re enough, and I’m proud of you more than words can say.", "voice_id": "M7baJQBjzMsrxxZ796H6" } ) print(response.json()) ``` ### JavaScript ```javascript fetch("https://modelslab.com/api/v7/voice/text-to-speech", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "key": "YOUR_API_KEY", "model_id": "eleven_multilingual_v2", "prompt": "Hey, love. I just wanted to say… you're doing beautifully. Even if today felt a little messy, even if you didn’t get everything done that’s okay. You’re still growing, still trying, still shining. I see your heart, your effort, your gentleness. And I just hope you can feel how much you're loved. So rest easy now. You’re safe, you’re enough, and I’m proud of you more than words can say.", "voice_id": "M7baJQBjzMsrxxZ796H6" }) }) .then(response => response.json()) .then(data => console.log(data)); ``` ## Links - [Model Playground](https://modelslab.com/models/elevenlabs-text-to-speech/eleven_multilingual_v2) - [API Documentation](https://docs.modelslab.com) - [ModelsLab Platform](https://modelslab.com)