Skip to main content
GET
/
v2
/
pronunciation-dictionaries
/
{dictionary_id}
Get Pronunciation Dictionary
curl --request GET \
  --url https://tavusapi.com/v2/pronunciation-dictionaries/{dictionary_id} \
  --header 'x-api-key: <api-key>'
{
  "pronunciation_dictionary_id": "pd_abc123def456gh",
  "name": "Brand Terms",
  "rules": [
    {
      "text": "Tavus",
      "pronunciation": "TAH-vus",
      "type": "alias",
      "case_sensitive": false,
      "word_boundaries": true
    }
  ],
  "rules_count": 1,
  "created_at": "2025-01-15T10:30:00Z",
  "updated_at": "2025-01-15T10:30:00Z"
}

Authorizations

x-api-key
string
header
required

Path Parameters

dictionary_id
string
required

The unique identifier of the pronunciation dictionary.

Response

Pronunciation dictionary details

pronunciation_dictionary_id
string

Unique identifier for the pronunciation dictionary.

Example:

"pd_abc123def456gh"

name
string

Name of the pronunciation dictionary.

Example:

"Brand Terms"

rules
object[]

List of pronunciation rules.

rules_count
integer

Number of rules in the dictionary.

Example:

1

created_at
string

ISO 8601 timestamp of when the dictionary was created.

Example:

"2025-01-15T10:30:00Z"

updated_at
string

ISO 8601 timestamp of when the dictionary was last updated.

Example:

"2025-01-15T10:30:00Z"