Spaces

List voices

The voices an agent can use.

GEThttps://app.elunos.ai/api/v1/spaces/{space}/voices

Returns the voices you can choose from for an agent. Set the id as voice_id on the agent.

Path parameters

spacestringPflicht

Slug of the space, e.g. `praxis-mueller`. Returned by `GET /spaces`.

Query parameters

languagestring

Only voices of this language, e.g. `de`.

Example

curl https://app.elunos.ai/api/v1/spaces/praxis-mueller/voices?language=de \
  -H "Authorization: Bearer np_xxxxxxxx"

Response

{
  "data": [
    {
      "id": "0199a1f0-3c2b-7d1e-9a8b-7c6d5e4f3a21",
      "name": "Mia",
      "language": "de",
      "description": "Warm, ruhig, klar",
      "preview_url": "https://app.elunos.ai/…/mia.mp3",
      "is_default": true
    }
  ]
}

preview_url is a short sample. is_default marks the voice an agent uses when it has no voice_id of its own.