v1

latestOpenAPI 3.0.32026-07-267015229.9 KB
Pronunciation Dictionaries

Get Pronunciation Dictionary

Retrieve a pronunciation dictionary by its ID, including all rules.

get/v2/pronunciation-dictionaries/{dictionary_id}

Path parameters

dictionary_idstring required

The unique identifier of the pronunciation dictionary.

Response

Pronunciation dictionary details

pronunciation_dictionary_idstring

Unique identifier for the pronunciation dictionary.

namestring

Name of the pronunciation dictionary.

rules_countinteger

Number of rules in the dictionary.

created_atstring

ISO 8601 timestamp of when the dictionary was created.

updated_atstring

ISO 8601 timestamp of when the dictionary was last updated.

Example response

{
  "pronunciation_dictionary_id": "pd_abc123def456gh",
  "name": "Brand Terms",
  "rules": [
    {
      "text": "Tavus",
      "pronunciation": "TAH-vus",
      "type": "alias",
      "word_boundaries": true
    }
  ],
  "rules_count": 1,
  "created_at": "2025-01-15T10:30:00Z",
  "updated_at": "2025-01-15T10:30:00Z"
}