Skip to main content
GET
https://app.famulor.de/api/
/
user
/
assistants
/
voices
Get available voices
curl --request GET \
  --url https://app.famulor.de/api/user/assistants/voices \
  --header 'Authorization: Bearer <token>'
[
  {
    "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"
  }
]
Retrieve the complete list of available voices you can use when creating or updating assistants. Optionally filter by assistant mode.

Query Parameters

mode
string
Filter voices by assistant mode. Valid options: pipeline, multimodal

Response Fields

data
array
Array of voice options
[
  {
    "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 voice id when creating or updating assistants
  • The mode field shows which assistant engine the voice supports
  • Filtering by mode helps you find compatible voices for your assistant type
  • Without a mode filter, all available voices are returned
  • Only public voices or voices belonging to your account appear in results