Skip to main content
Version: 2.0.0

Create Voice from Candidate

This endpoint creates a new voice from one of the previously generated voice candidates.

Request

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

Path Parameters

ParameterDescription
voice_design_model_uuidThe UUID of the voice design model (from the previous response)
voice_sample_indexThe index of the chosen voice sample (0, 1, or 2)

Headers

HeaderDescription
AuthorizationYour Resemble API token

Request Body

ParameterTypeRequiredDescription
voice_nametextYesName for your new voice

Example Request

curl --location 'https://app.resemble.ai/api/v2/voice-design/<voice_design_model_uuid>/<voice_sample_index>/create_rapid_voice' \
--header 'Authorization: Bearer YOUR_API_TOKEN' \
--form 'voice_name="My API Voice"'

Response

Response Body

FieldTypeDescription
voice_uuidstringUUID of the newly created voice

Example Response

{
"voice_uuid": "<voice_uuid>"
}

Notes

  • The created voice will begin building immediately.
  • The voice is created with the characteristics from the selected sample.
  • You can use the returned voice_uuid to reference this voice in other API calls.