This endpoint returns a list of all available voices that can be used when creating or updating assistants, with optional filtering by assistant mode.
Query Parameters
Filter voices by assistant mode. Options: pipeline, multimodal
Response fields
The unique identifier of the voice
The display name of the voice
The assistant mode this voice is compatible with (pipeline or multimodal)
[
  {
    "id": 1,
    "name": "Sarah",
    "mode": "pipeline"
  },
  {
    "id": 2,
    "name": "Michael",
    "mode": "pipeline"
  },
  {
    "id": 3,
    "name": "Emma",
    "mode": "multimodal"
  },
  {
    "id": 4,
    "name": "David",
    "mode": "multimodal"
  },
  {
    "id": 5,
    "name": "Sophia",
    "mode": "pipeline"
  }
]
Notes
- Use the idfield when creating or updating assistants
- The modefield indicates which assistant engine the voice is compatible with
- Filter by mode to get only voices compatible with your intended assistant type
- If no mode filter is provided, all available voices are returned
- Only voices that are public or belong to the authenticated user are returned