Voice Changer
Transform the voice in your audio files while preserving the original speech content and timing. Choose from a variety of high-quality voices with different characteristics, accents, and speaking styles.
Endpoint
Authentication
| Field | Value |
|---|---|
| API-KEY | <api-key> |
| Content-Type | application/json |
Request Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
type | string | Feature name: VOICE_CHANGER | ✔️ |
model | string | Model name: elevenlabs-voice-changer | ✔️ |
conversationId | string | Conversation identifier | ✔️ |
promptObject.audioUrl | string | Path to the audio file to be voice changed | ✔️ |
promptObject.voice_id | string | Target voice ID | ✔️ |
promptObject.output_format | string | Audio output format | ❌ |
promptObject.model_id | string | Speech-to-Speech model ID | ❌ |
promptObject.seed | number | Seed for deterministic generation (0-4294967295) | ❌ |
promptObject.remove_background_noise | boolean | Remove background noise from audio | ❌ |
Voice Options (voice_id)
| Voice ID | Name |
|---|---|
Xb7hH8MSUJpSbSDYk0k2 | Alice |
pqHfZKP75CvOlQylNhV4 | Bill |
nPczCjzI2devNBz1zQrb | Brian |
N2lVS1w4EtoT3dr4eOWO | Callum |
IKne3meq5aSn9XLyUdCD | Charlie |
iP95p4xoKVk53GoZ742B | Chris |
2EiwWnXFnvU5JabPnv8n | Clyde |
onwK4e9ZLuTAKqWW03F9 | Daniel |
cjVigY5qzO86Huf0OWal | Eric |
JBFqnCBsd6RMkjVDRZzb | George |
SOYHLrjzK2X1ezoPC6cr | Harry |
cgSgspJ2msm6clMCkdW9 | Jessica |
FGY2WhTYpPnrIDTdsKH5 | Laura |
TX3LPaxmHKxFdv7VOQHJ | Liam |
pFZP5JQG7iQjIQuC4Bku | Lily |
XrExE9yKIg1WjnnlVkGX | Matilda |
SAz9YHcvj6GT2YYXdXww | River |
CwhRBWXzGAHq8TQ4Fs17 | Roger |
EXAVITQu4vr4xnSDxMaL | Sarah |
bIHbv24MWmeRgasZH58o | Will |
Output Format Options (output_format)
| Format | Sample Rate | Bitrate | Description |
|---|---|---|---|
mp3_44100_128 | 44.1 kHz | 128 kbps | Default - Good quality balance |
mp3_22050_32 | 22.05 kHz | 32 kbps | Lower quality, smaller file |
mp3_44100_192 | 44.1 kHz | 192 kbps | High quality |
mp3_44100_32 | 44.1 kHz | 32 kbps | Lower bitrate |
mp3_44100_64 | 44.1 kHz | 64 kbps | Medium quality |
mp3_44100_96 | 44.1 kHz | 96 kbps | Good quality |
Speech-to-Speech Models (model_id)
| Model ID | Description |
|---|---|
eleven_english_sts_v2 | Eleven English v2 |
eleven_multilingual_sts_v2 | Eleven Multilingual v2 |
Interactive Example
API Playground
https://api.1min.ai/api/featuresGenerated cURL Command:
curl -X POST "https://api.1min.ai/api/features" \
-H "API-KEY: <your-api-key>" \
-H "Content-Type: application/json" \
-d '{
"type": "VOICE_CHANGER",
"model": "elevenlabs-voice-changer",
"conversationId": "VOICE_CHANGER",
"promptObject": {
"audioUrl": "development/audios/sample-audio.wav",
"voice_id": "Xb7hH8MSUJpSbSDYk0k2",
"output_format": "mp3_44100_128",
"model_id": "eleven_english_sts_v2",
"remove_background_noise": false
}
}'
Response
The API returns a URL to the generated audio file with the transformed voice.
{}