GET
/
api
/
v1
/
pronunciation-dicts
Get pronunciation dictionaries
curl --request GET \
  --url https://waves-api.smallest.ai/api/v1/pronunciation-dicts
[
  {
    "id": "64f1234567890abcdef12345",
    "items": [
      {
        "word": "mysql",
        "pronunciation": "my-sequel"
      }
    ],
    "createdAt": "2023-09-01T12:00:00.000Z"
  }
]

Response

List of pronunciation dictionaries

id
string
required

Unique identifier for the pronunciation dictionary

Example:

"64f1234567890abcdef12345"

items
object[]
required

List of word-pronunciation pairs

createdAt
string<date-time>
required

Timestamp when the dictionary was created

Example:

"2023-09-01T12:00:00.000Z"