Create Voice from Candidate

POST https://app.resemble.ai/api/v2/voice-design/{voice_design_model_uuid}/{voice_sample_index}/create_rapid_voice or POST https://app.resemble.ai/api/v2/voice-design/{voice_design_model_uuid}/{voice_sample_index}/create

Create a rapid voice from a selected voice design candidate.

ParameterTypeRequiredNotes
voice_design_model_uuidstringVoice design UUID (URL parameter).
voice_sample_indexintegerIndex of the selected sample (URL parameter).
FieldTypeRequiredNotes
voice_namestringName for the new voice.
$curl --request POST 'https://app.resemble.ai/api/v2/voice-design/VOICE_DESIGN_UUID/1/create_rapid_voice' \
> -H 'Authorization: Bearer YOUR_API_TOKEN' \
> -H 'Content-Type: application/json' \
> --data '{
> "voice_name": "My API Voice"
> }'
1{
2 "voice_uuid": "VOICE_UUID"
3}

Returns 202 Accepted status. Voice training begins asynchronously. Voice design must belong to current user. Sample must exist for the given index.