ElevenLabs | Voice Changer
Change the voice in audio files using ElevenLabs AI. Upload audio and select a target voice to transform the speaker's voice while preserving the speech content, intonation, and emotion.
Quick Start
Requires an each::labs API key. Get one at eachlabs.ai.
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "elevenlabs-voice-changer",
"version": "0.0.1",
"input": {
"audio_url": "https://example.com/speech-recording.mp3",
"voice_id": "9BWtsMINqrJLrRacOk9x",
"model_id": "eleven_english_sts_v2"
}
}'
Parameters
| Parameter |
Type |
Default |
Description |
| audio_url |
string |
- |
URL of the audio file to transform |
| model_id |
string |
eleven_english_sts_v2 |
Voice conversion model. Options: eleven_english_sts_v2 |
| voice_id |
string |
- |
Target voice ID. Available voices: Aria (9BWtsMINqrJLrRacOk9x), Roger (CwhRBWXzGAHq8TQ4Fs17), Sarah (EXAVITQu4vr4xnSDxMaL), Laura (FGY2WhTYpPnrIDTdsKH5), Charlie (IKne3meq5aSn9XLyUdCD), George (JBFqnCBsd6RMkjVDRZzb), Callum (N2lVS1w4EtoT3dr4eOWO), River (SAz9YHcvj6GT2YYXdXww), Liam (TX3LPaxmHKxFdv7VOQHJ), Charlotte (XB0fDUnXU5powFXDhCwa), Alice (Xb7hH8MSUJpSbSDYk0k2), Matilda (XrExE9yKIg1WjnnlVkGX), Will (bIHbv24MWmeRgasZH58o), Jessica (cgSgspJ2msm6clMCkdW9), Eric (cjVigY5qzO86Huf0OWal), Chris (iP95p4xoKVk53GoZ742B), Brian (nPczCjzI2devNBz1zQrb), Daniel (onwK4e9ZLuTAKqWW03F9), Lily (pFZP5JQG7iQjIQuC4Bku), Bill (pqHfZKP75CvOlQylNhV4) |
Examples
Change voice to Aria:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "elevenlabs-voice-changer",
"version": "0.0.1",
"input": {
"audio_url": "https://example.com/podcast-clip.mp3",
"voice_id": "9BWtsMINqrJLrRacOk9x"
}
}'
Change voice to Brian:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "elevenlabs-voice-changer",
"version": "0.0.1",
"input": {
"audio_url": "https://example.com/narration.wav",
"voice_id": "nPczCjzI2devNBz1zQrb",
"model_id": "eleven_english_sts_v2"
}
}'
Related Models
Documentation
1---2name: elevenlabs-voice-changer3description: ElevenLabs | Voice Changer. Change the voice in audio files using ElevenLabs AI voice cloning. Transform any voice to sound like a different speaker. Triggers: voice changer, change voice, elevenlabs voice, voice clone, voice swap, voice transformation, speech to speech4---56# ElevenLabs | Voice Changer78Change the voice in audio files using ElevenLabs AI. Upload audio and select a target voice to transform the speaker's voice while preserving the speech content, intonation, and emotion.910## Quick Start1112> Requires an each::labs API key. Get one at [eachlabs.ai](https://eachlabs.ai).1314```bash15curl -X POST https://api.eachlabs.ai/v1/prediction \16 -H "Content-Type: application/json" \17 -H "X-API-Key: $EACHLABS_API_KEY" \18 -d '{19 "model": "elevenlabs-voice-changer",20 "version": "0.0.1",21 "input": {22 "audio_url": "https://example.com/speech-recording.mp3",23 "voice_id": "9BWtsMINqrJLrRacOk9x",24 "model_id": "eleven_english_sts_v2"25 }26 }'27```2829## Parameters3031| Parameter | Type | Default | Description |32|-----------|------|---------|-------------|33| audio_url | string | - | URL of the audio file to transform |34| model_id | string | eleven_english_sts_v2 | Voice conversion model. Options: `eleven_english_sts_v2` |35| voice_id | string | - | Target voice ID. Available voices: Aria (`9BWtsMINqrJLrRacOk9x`), Roger (`CwhRBWXzGAHq8TQ4Fs17`), Sarah (`EXAVITQu4vr4xnSDxMaL`), Laura (`FGY2WhTYpPnrIDTdsKH5`), Charlie (`IKne3meq5aSn9XLyUdCD`), George (`JBFqnCBsd6RMkjVDRZzb`), Callum (`N2lVS1w4EtoT3dr4eOWO`), River (`SAz9YHcvj6GT2YYXdXww`), Liam (`TX3LPaxmHKxFdv7VOQHJ`), Charlotte (`XB0fDUnXU5powFXDhCwa`), Alice (`Xb7hH8MSUJpSbSDYk0k2`), Matilda (`XrExE9yKIg1WjnnlVkGX`), Will (`bIHbv24MWmeRgasZH58o`), Jessica (`cgSgspJ2msm6clMCkdW9`), Eric (`cjVigY5qzO86Huf0OWal`), Chris (`iP95p4xoKVk53GoZ742B`), Brian (`nPczCjzI2devNBz1zQrb`), Daniel (`onwK4e9ZLuTAKqWW03F9`), Lily (`pFZP5JQG7iQjIQuC4Bku`), Bill (`pqHfZKP75CvOlQylNhV4`) |3637## Examples3839**Change voice to Aria:**40```bash41curl -X POST https://api.eachlabs.ai/v1/prediction \42 -H "Content-Type: application/json" \43 -H "X-API-Key: $EACHLABS_API_KEY" \44 -d '{45 "model": "elevenlabs-voice-changer",46 "version": "0.0.1",47 "input": {48 "audio_url": "https://example.com/podcast-clip.mp3",49 "voice_id": "9BWtsMINqrJLrRacOk9x"50 }51 }'52```5354**Change voice to Brian:**55```bash56curl -X POST https://api.eachlabs.ai/v1/prediction \57 -H "Content-Type: application/json" \58 -H "X-API-Key: $EACHLABS_API_KEY" \59 -d '{60 "model": "elevenlabs-voice-changer",61 "version": "0.0.1",62 "input": {63 "audio_url": "https://example.com/narration.wav",64 "voice_id": "nPczCjzI2devNBz1zQrb",65 "model_id": "eleven_english_sts_v2"66 }67 }'68```6970## Related Models7172- [ElevenLabs | Text to Speech](../elevenlabs-text-to-speech/) - Generate speech from text73- [ElevenLabs | Sound Effects](../elevenlabs-sound-effects/) - Generate sound effects74- [PixVerse | Lip Sync](../pixverse-lip-sync/) - Lip sync audio to video7576## Documentation7778- [each::labs Docs](https://docs.eachlabs.ai)79- [API Reference](https://docs.eachlabs.ai/api/overview)