API Reference
Get available voices
Retrieve all available voices for assistant configuration
On this page
This endpoint returns a list of all available voices that can be used when creating or updating assistants, with optional filtering by assistant mode and language.
Query Parameters
modestring
Filter voices by assistant mode. Options: pipeline, multimodal, dualplex
language_idinteger
Filter voices by language ID. Use the Get Languages endpoint to get available language IDs.
synthesizer_provider_idinteger
Filter voices by TTS provider ID (e.g. ElevenLabs, Cartesia, Azure). Use the Get Synthesizer Providers endpoint to get available provider IDs.
genderstring
Filter voices by gender (e.g., male, female).
agestring
Filter voices by age category (e.g., Young, Middle aged).
accentstring
Filter voices by accent (e.g., American, British).
searchstring
Free-text search across voice name, accent, age, and gender.
Response fields
dataarray
[
{
"id": 1,
"name": "Alloy",
"language_id": 1,
"gender": "female",
"preview_url": "https://cdn.openai.com/API/voice-previews/alloy.flac",
"accent": null,
"age": "Middle aged",
"synthesizer_provider_id": null
},
{
"id": 10,
"name": "Zephyr",
"language_id": 1,
"gender": "female",
"preview_url": "https://gstatic.com/aistudio/voices/samples/Zephyr.wav",
"accent": null,
"age": "Middle aged",
"synthesizer_provider_id": 1
},
{
"id": 11,
"name": "Puck",
"language_id": 1,
"gender": "male",
"preview_url": "https://gstatic.com/aistudio/voices/samples/Puck.wav",
"accent": null,
"age": "Middle aged",
"synthesizer_provider_id": 1
}
]
Notes
- Use the
idfield asvoice_idwhen creating or updating assistants - Filter by
modeto get only voices compatible with your intended assistant type - Filter by
language_idto get voices for a specific language - Filter by
gender,age, oraccentto narrow the list, or usesearchfor free-text matching across those fields - If no filters are provided, all available voices are returned
- Only voices that are public or belong to the authenticated user are returned
Related guides
API Reference
Introduction
Welcome to the VoxLink API
Read guide →API Reference
Authentication
Learn how to authenticate your API requests
Read guide →API Reference
Get current user
Get the authenticated user's profile information
Read guide →API Reference
List assistants
List all assistants for the authenticated user with pagination
Read guide →