Voices
List voices
Returns a paginated list of available voices, including professional voices and the organization's cloned voices.
Authorization
BearerAuth AuthorizationBearer <token>
Jellypod API key. Create and manage keys from the Jellypod dashboard under Settings → API Keys.
In: header
Query Parameters
cursor?string
Opaque cursor from a previous response's next_cursor field. Omit for the first page.
limit?integer
Number of items to return per page.
Default
20Range
1 <= value <= 100language?string
Filter by ISO 639-1 two-letter language code (e.g., en, ja, ko).
Match
^[a-z]{2}$gender?string
Filter by gender.
Value in
"male" | "female" | "other"voice_type?string
Filter by voice type.
Value in
"professional" | "clone" | "design"Response Body
application/json
application/json
application/json
curl -X GET "https://api.jellypod.com/v1/voices"{
"data": [
{
"id": 42,
"description": "A warm, authoritative male voice with an American accent",
"language": "en",
"gender": "male",
"accent": "american",
"voice_type": "professional"
}
],
"pagination": {
"has_more": true,
"next_cursor": "string"
}
}{
"error": {
"code": "bad_request",
"message": "string",
"request_id": "string",
"details": [
{
"field": "string",
"message": "string"
}
]
}
}{
"error": {
"code": "bad_request",
"message": "string",
"request_id": "string",
"details": [
{
"field": "string",
"message": "string"
}
]
}
}Was this page helpful?