Jellypod Docs

List voices

GET
/v1/voices

Authorization

bearerAuth
AuthorizationBearer <token>

API key issued from /settings/api-keys in the Jellypod studio. Send as Authorization: Bearer <key>.

In: header

Query Parameters

cursor?string
limit?integer
Default20
Range1 <= value <= 100
language?string
Match^[a-zA-Z]{2}$
gender?string
voice_type?string

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X GET "https://api.jellypod.com/v1/voices"
{
  "data": [
    {
      "id": 30142,
      "description": "string",
      "language": "en",
      "gender": "male",
      "accent": "string",
      "voice_type": "professional"
    }
  ]
}

Was this page helpful?