GET
/
api
/
v1
/
agents
/
voices
curl --request GET \
  --url https://cx-staging-three.fly.dev/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

default - application/json
name
string | null
required

The name of the voice

Example:

"Jane"

voiceId
string | null
required

The id of the voice

Example:

"1234567890"

gender
string | null
required

The gender of the voice

Example:

"female"

status
boolean
required

The status of the voice

Example:

true

language
string | null
required

The language of the voice

Example:

"en-US"