Skip to main content
GET
/
v2
/
pronunciation-dictionaries
List Pronunciation Dictionaries
curl --request GET \
  --url https://tavusapi.com/v2/pronunciation-dictionaries \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "pronunciation_dictionary_id": "pd_abc123def456gh",
      "name": "Brand Terms",
      "rules_count": 3,
      "created_at": "2025-01-15T10:30:00Z",
      "updated_at": "2025-01-15T10:30:00Z"
    }
  ],
  "total_count": 2,
  "page": 0,
  "limit": 10
}
The list response includes rules_count but does not include the full rules array. Use the Get endpoint to retrieve rules for a specific dictionary.

Authorizations

x-api-key
string
header
required

Query Parameters

limit
integer
default:10

Number of results per page. Range: 1-100.

Required range: 1 <= x <= 100
page
integer
default:0

Zero-based page number.

sort
enum<string>
default:desc

Sort order by creation date.

Available options:
asc,
desc

Response

List of pronunciation dictionaries

data
object[]
total_count
integer

Total number of pronunciation dictionaries for the user

Example:

2

page
integer

Current page number

Example:

0

limit
integer

Number of dictionaries per page

Example:

10