GET
/
v1
/
pronunciation-dictionaries
/
{pronunciation_dictionary_id}
/
from elevenlabs import ElevenLabs

client = ElevenLabs(
    api_key="YOUR_API_KEY",
)
client.pronunciation_dictionary.get(
    pronunciation_dictionary_id="Fm6AvNgS53NXe6Kqxp3e",
)
{
  "id": "<string>",
  "latest_version_id": "<string>",
  "name": "<string>",
  "created_by": "<string>",
  "creation_time_unix": 123,
  "description": "<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

pronunciation_dictionary_id
string
required

The id of the pronunciation dictionary

Response

200
application/json

Successful Response

The response is of type object.