Skip to main content
GET
/
api
/
v1
/
get_voices
Get Available Voices
curl --request GET \
  --url https://api.tts.timepay.ai/api/v1/get_voices \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "Kartik",
    "description": "Warm, steady, and confident male voice suitable for banking.",
    "languages": [
      "English",
      "Hindi"
    ],
    "gender": "male"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successful response

name
string
Example:

"Kartik"

description
string
Example:

"Warm, steady, and confident male voice suitable for banking, reminders, and formal flows."

languages
string[]
Example:
["English", "Hindi", "Marathi"]
gender
enum<string>
Available options:
male,
female
Example:

"male"

Example:
[
{
"name": "Kartik",
"description": "Warm, steady, and confident male voice suitable for banking.",
"languages": ["English", "Hindi"],
"gender": "male"
}
]