Skip to main content
PUT
/
v1
/
voices
/
{id}
cURL
curl --request PUT \
  --url https://api.anam.ai/v1/voices/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "displayName": "<string>",
  "providerModelId": "sonic-2-2025-05-08",
  "gender": "male",
  "country": "<string>",
  "description": "<string>"
}'

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string<uuid>
required

Voice ID

Body

application/json
displayName
string
required

New display name for the voice

providerModelId
string
default:sonic-2-2025-05-08

New provider model ID for the voice (default sonic-2-2025-05-08)

gender
enum<string> | null

Voice gender

Available options:
male,
female,
neutral
country
string | null

ISO 3166-1 alpha-2 country code

description
string | null

Voice description

Response

Successfully updated voice