# eleven_sound_effect > Create highly realistic, emotion-rich voice clones from 1-30+ minutes of clean audio using advanced deep learning models supporting 70+ languages with low-latency API integration. ## Overview - **Model ID**: `eleven_sound_effect` - **Category**: voice cloning - **Provider**: elevenlabs - **Status**: model_ready - **Screenshot**: `https://assets.modelslab.com/generations/8172812c-dd54-438a-89cb-51471917b799.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/sound-generation` - **Method**: POST ### Parameters - **`prompt`** (required): Prompt for generating sound - Type: text - **`time in seconds`** (optional): Enter Time in seconds - Type: number (range: 1-22) ## Usage Examples ### cURL ```bash curl --request POST \ --url https://modelslab.com/api/v7/voice/sound-generation \ --header "Content-Type: application/json" \ --data '{ "key": "YOUR_API_KEY", "model_id": "eleven_sound_effect", "prompt": "A massive cinematic explosion in an open battlefield, starting with a sharp crack followed by a deep, rumbling bass tail that echoes into the distance. Include layered debris falling, dust whoosh, shockwave distortion, and faint alarms or metallic shrapnel raining down, suitable for a blockbuster war film or action trailer.", "time in seconds": "10" }' ``` ### Python ```python import requests response = requests.post( "https://modelslab.com/api/v7/voice/sound-generation", headers={ "Content-Type": "application/json" }, json={ "key": "YOUR_API_KEY", "model_id": "eleven_sound_effect", "prompt": "A massive cinematic explosion in an open battlefield, starting with a sharp crack followed by a deep, rumbling bass tail that echoes into the distance. Include layered debris falling, dust whoosh, shockwave distortion, and faint alarms or metallic shrapnel raining down, suitable for a blockbuster war film or action trailer.", "time in seconds": "10" } ) print(response.json()) ``` ### JavaScript ```javascript fetch("https://modelslab.com/api/v7/voice/sound-generation", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "key": "YOUR_API_KEY", "model_id": "eleven_sound_effect", "prompt": "A massive cinematic explosion in an open battlefield, starting with a sharp crack followed by a deep, rumbling bass tail that echoes into the distance. Include layered debris falling, dust whoosh, shockwave distortion, and faint alarms or metallic shrapnel raining down, suitable for a blockbuster war film or action trailer.", "time in seconds": "10" }) }) .then(response => response.json()) .then(data => console.log(data)); ``` ## Links - [Model Playground](https://modelslab.com/models/elevenlabs-sound-effect/eleven_sound_effect) - [API Documentation](https://docs.modelslab.com) - [ModelsLab Platform](https://modelslab.com)