v1

latestOpenAPI 3.0.1MIT2026-07-26104203277.0 KB

List Voice Dictionaries

Retrieves a paginated list of voice dictionaries.

get/v1/voice-agents/voice-dictionaries/list

Query parameters

skipinteger
Example:1

Number of items to skip (pagination).

takeinteger
Example:10

Number of items to take (pagination).

searchstring
Example:Medical

Optional search text, applied to dictionary names.

usedboolean
Example:true

Filter by whether the dictionary is actively used by a voice agent.

voiceAgentIdstring uuid
Example:48f7656f-098b-4c43-b165-7cfd2cc8ac30

Filter by voice agent ID.

Response

Successful response

successboolean

Example response

{
  "success": true,
  "data": {
    "dictionaries": [
      {
        "id": "48f7656f-098b-4c43-b165-7cfd2cc8ac30",
        "name": "Medical Terms Dictionary",
        "wordsCount": 25,
        "isUsed": true,
        "createdAt": "2024-01-15T10:30:00Z"
      }
    ],
    "total": 100,
    "page": 1,
    "pageSize": 10
  }
}