JellypodJellypod
Voices

List voices

GET
/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.

Default20
Range1 <= value <= 100
language?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"
  }
}

Was this page helpful?