POST
/
v0
/
assistant
/
voice
curl --request POST \
  --url 'https://api.unify.ai/v0/assistant/voice' \
  --header "Authorization: Bearer $UNIFY_KEY" \
  --header 'Content-Type: application/json' \
  --data '{
    "voice_id": "bf0a246a-8642-498a-9950-80c35e9276b5",
    "name": "English Woman Calm 1",
    "description": "Calm and relaxing voice of an english-speaking woman",
    "gender": "female",
    "language": "en"
}'
{
    "info": "object"
}

Create a voice that can be used my any assistant during TTS.

Authorizations

Authorization
string
required

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

Body

voice_id
string
required

Cartesia Voice ID

name
string
required

User-given name for the voice

description
string
required

Description of the voice

gender
string
required

Gender of the voice

language
string
required

Language code of the voice

curl --request POST \
  --url 'https://api.unify.ai/v0/assistant/voice' \
  --header "Authorization: Bearer $UNIFY_KEY" \
  --header 'Content-Type: application/json' \
  --data '{
    "voice_id": "bf0a246a-8642-498a-9950-80c35e9276b5",
    "name": "English Woman Calm 1",
    "description": "Calm and relaxing voice of an english-speaking woman",
    "gender": "female",
    "language": "en"
}'
{
    "info": "object"
}