#Where can I find pronunciation dictionaries when I don't have one?
1 messages · Page 1 of 1 (latest)
AI-generated Answer for evazils_02177
You can get a list of the pronunciation dictionaries you have access to by using the ElevenLabs API. Here's how you can do it:
API Request
You can make a GET request to the following endpoint:
GET /v1/pronunciation-dictionaries/
Headers
Make sure to include your API key in the headers:
xi-api-key: your_api_key_here
Query Parameters
You can use the following optional query parameters:
cursor: Used for fetching the next page. The cursor is returned in the response.page_size: The maximum number of pronunciation dictionaries to return. The default is 30, and it cannot exceed 100.
Example cURL Command
curl --request GET \
--url https://api.elevenlabs.io/v1/pronunciation-dictionaries/ \
--header 'xi-api-key: your_api_key_here'
Response
A successful response will return a JSON object with the list of pronunciation dictionaries and their metadata.
Example Response
{
"pronunciation_dictionaries": [
{
"id": "<string>",
"latest_version_id": "<string>",
"name": "<string>",
"created_by": "<string>",
"creation_time_unix": 123,
"description": "<string>"
}
],
"next_cursor": "<string>",
"has_more": true
}
This will give you access to the pronunciation dictionaries available to you.
How and where do I make the API request? I do not have any technical skills