GET
/
api
/
v1
/
agents
/
voices
curl --request GET \
  --url https://api.elemente.ai/api/v1/agents/voices \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "name": "Jane",
    "voiceId": "1234567890",
    "gender": "female",
    "status": true,
    "language": "en-US"
  }
]

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

200
application/json

The list of available voices

The response is of type object[].