Skip to main content
POST
/
v1
/
voices
/
{voice_id}
/
settings
/
edit
Edit Voice Settings
curl --request POST \
  --url https://api.elevenlabs.io/v1/voices/{voice_id}/settings/edit \
  --header 'Content-Type: application/json' \
  --data '
{
  "stability": 123,
  "similarity_boost": 123,
  "style": 0,
  "use_speaker_boost": true
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Headers

xi-api-key
string

Your API key. This is required by most endpoints to access our API programatically. You can view your xi-api-key using the 'Profile' tab on the website.

Path Parameters

voice_id
string
required

Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices.

Body

application/json

The settings for a specific voice.

stability
number
required
similarity_boost
number
required
style
number
default:0
use_speaker_boost
boolean
default:true

Response

Successful Response