Skip to main content

Voice Library

Explore the voices available in Audixa AI. You can view the full, up-to-date list of voices in your dashboard or fetch them programmatically using the API.

The Voice ID for each voice is used as the voice parameter in your API requests.


View Voices in the Dashboard

For a visual and searchable list of all available voices, and their details, please visit the Voices page in your Audixa AI dashboard. This is the easiest way to find the perfect voice for your needs.

Explore Voices in the Dashboard


Fetch Voices Programmatically

In addition to the dashboard, you can programmatically fetch the most up-to-date list of all voices available to your account by querying the /voices endpoint. This is useful for integrating voice selection directly into your application.

API Endpoint

To get the list of all available voices, send a GET request to the following endpoint:


GET https://api.audixa.ai/v2/voices


Required Headers

x-api-key: YOUR_API_KEY

Query Parameters

ParameterTypeDescription
modelstringRequired. The model you want to fetch voices for. Example: base.

Code Examples

# Make sure to replace YOUR_API_KEY with your actual key
curl -X GET "https://api.audixa.ai/v2/voices?model=base" \
-H "x-api-key: YOUR_API_KEY"

Example Response

A successful request returns a JSON object containing your user_id, the specified model, and a voices list containing all available voice objects for your account.

{
"user_id": "user_abc_12345",
"model": "base",
"voices":[
{
"voice_id": "am_2riuownnf",
"name": "Ethan",
"gender": "Male",
"accent": "American",
"free": true,
"description": "VoiceID: am_2riuownnf"
},
{
"voice_id": "af_3kbq21leo",
"name": "Lily",
"gender": "Female",
"accent": "American",
"free": true,
"description": "VoiceID: af_3kbq21leo"
}
]
// ...and so on for all other available voices
}