v1

latestOpenAPI 3.0.12026-07-2696152184.1 KB
PronunciationDicts

List all pronunciation dictionaries for the authenticated user

get/pronunciation-dicts/

Query parameters

limitinteger nullable

The number of dictionaries to return per page, ranging between 1 and 100.

starting_afterstring nullable

A cursor to use in pagination. starting_after is a dictionary ID that defines your place in the list. For example, if you make a request and receive 20 objects, ending with dict_abc123, your subsequent call can include starting_after=dict_abc123 to fetch the next page of the list.

ending_beforestring nullable

A cursor to use in pagination. ending_before is a dictionary ID that defines your place in the list. For example, if you make a request and receive 20 objects, starting with dict_abc123, your subsequent call can include ending_before=dict_abc123 to fetch the previous page of the list.

Headers

Cartesia-Version'2026-03-01' date required
Example:2026-03-01

API version header.

Response

has_moreboolean required

Whether there are more dictionaries available

next_pagestring nullable

An ID that can be passed as starting_after or ending_before to get the next page of data.

Example response

{
  "data": [
    {
      "id": "pdict_123",
      "name": "Acme",
      "description": "An example dictionary",
      "is_owner": true,
      "pinned": false,
      "access": {
        "type": "private",
        "visibility": "owner"
      },
      "items": [
        {
          "text": "acme",
          "alias": "<<ˈ|æ|k|m|i>>",
          "pronunciation": "<<ˈ|æ|k|m|i>>"
        }
      ],
      "created_at": "2025-10-27T14:54:26.68581Z",
      "owner_id": "org_123"
    }
  ]
}