Voices
List Voices
GET
/
v1
/
voices
/
list
curl --request GET \
--url https://api.vocode.dev/v1/voices/list \
--header 'Authorization: <authorization>'
{
"has_more": true,
"items": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"pitch": 123,
"rate": 123,
"type": "voice_azure",
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"voice_name": "<string>"
}
],
"page": 123,
"size": 123
}
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
page
integer
default: 1size
integer
default: 10Response
200 - application/json
has_more
boolean
requireditems
object[]
requiredAzureVoice
RimeVoice
ElevenLabsVoice
PlayHtVoice
page
integer
requiredsize
integer
requiredcurl --request GET \
--url https://api.vocode.dev/v1/voices/list \
--header 'Authorization: <authorization>'
{
"has_more": true,
"items": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"pitch": 123,
"rate": 123,
"type": "voice_azure",
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"voice_name": "<string>"
}
],
"page": 123,
"size": 123
}