# Jaidenanimations E > AI model for generating voice cloning content ## Overview - **Model ID**: `jaidenanimations-e` - **Category**: voice cloning - **Provider**: modelslab - **Status**: model_ready - **Screenshot**: `https://assets.modelslab.ai/audio/Thumbnail1024/jaidenanimations-e.png` ## 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/v6/voice/voice_cover` - **Method**: POST ### Parameters - **`init_audio`** (required): Upload youtube music or mp3,wav music - Type: file ("audio/mp3,audio/wav") - Example: Enter/Upload Audio URL - **`model_id`** (required): Enter model_id for the voice cover - Type: text - Example: Enter model_id for the voice cover - **`pitch`** (required): Use none when the provided audio singer is male and model id is male. use m2f when the provided audio is male anf the model id is female. use f2m when the provided audio is female anf the model id is male - Type: select (options: none, m2f, f2m) ## Usage Examples ### cURL ```bash curl --request POST \ --url https://modelslab.com/api/v6/voice/voice_cover \ --header "Content-Type: application/json" \ --data '{ "key": "YOUR_API_KEY", "model_id": "jaidenanimations-e", "init_audio": "https://www.youtube.com/watch?v=ixkoVwKQaJg", "pitch": "none" }' ``` ### Python ```python import requests response = requests.post( "https://modelslab.com/api/v6/voice/voice_cover", headers={ "Content-Type": "application/json" }, json={ "key": "YOUR_API_KEY", "model_id": "jaidenanimations-e", "init_audio": "https://www.youtube.com/watch?v=ixkoVwKQaJg", "pitch": "none" } ) print(response.json()) ``` ### JavaScript ```javascript fetch("https://modelslab.com/api/v6/voice/voice_cover", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "key": "YOUR_API_KEY", "model_id": "jaidenanimations-e", "init_audio": "https://www.youtube.com/watch?v=ixkoVwKQaJg", "pitch": "none" }) }) .then(response => response.json()) .then(data => console.log(data)); ``` ## Links - [Model Playground](https://modelslab.com/models/voice-cover-community/jaidenanimations-e) - [API Documentation](https://docs.modelslab.com) - [ModelsLab Platform](https://modelslab.com)