POST
/
v0
/
assistant
/
voice
/
design
/
create
curl --request POST \
  --url 'https://api.unify.ai/v0/assistant/voice/design/create' \
  --header "Authorization: Bearer $UNIFY_KEY" \
  --header 'Content-Type: application/json' \
  --data '{}'
{
    "info": "object"
}

Creates a full voice from a generated preview voice id.

Authorizations

Authorization
string
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

generated_voice_id
string
required

The ‘generated_voice_id’ obtained from the ‘/design/preview’.

voice_name
string
required

Name for the new voice.

voice_description
string
required

Description for the new voice.

labels
object | null

Optional labels for ElevenLabs when creating the voice.

language
string
required

Language of the voice.

gender
string | null

Gender of the voice.

curl --request POST \
  --url 'https://api.unify.ai/v0/assistant/voice/design/create' \
  --header "Authorization: Bearer $UNIFY_KEY" \
  --header 'Content-Type: application/json' \
  --data '{}'
{
    "info": "object"
}