provider Pronunciation Dictionary GET /v1/pronunciation-dictionaries
@utdk/elevenlabs /v1/pronunciation-dictionaries
Get Pronunciation Dictionaries
Get a list of the pronunciation dictionaries you have access to and their metadata
cursor query
Used for fetching next page. Cursor is returned in the response.
page_size query
How many pronunciation dictionaries to return at maximum. Can not exceed 100, defaults to 30.
integer
sort query
Which field to sort by, one of 'created_at_unix' or 'name'.
sort_direction query
Which direction to sort the voices in. 'ascending' or 'descending'.
xi-api-key header
Your API key. This is required by most endpoints to access our API programmatically. You can view your xi-api-key using the 'Profile' tab on the website.

Try it

Authentication
Configure credentials for ElevenLabs API Documentation
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.

Saved automatically to browser storage.

getPronunciationDictionariesMetadata
GET/v1/pronunciation-dictionaries
Get a list of the pronunciation dictionaries you have access to and their metadata

Used for fetching next page. Cursor is returned in the response.

How many pronunciation dictionaries to return at maximum. Can not exceed 100, defaults to 30.

Which field to sort by, one of 'created_at_unix' or 'name'.

Which direction to sort the voices in. 'ascending' or 'descending'.

Enter a gateway URL above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import elevenlabs from '@utdk/elevenlabs';

await elevenlabs.getPronunciationDictionariesMetadata({
  "page_size": 30,
  "sort": "creation_time_unix",
  "sort_direction": "DESCENDING"
})