List Provider Voices
Configs API Endpoints
List Provider Voices
Retrieve a filterable, paginated list of available TTS voices for a specific provider.
GET
List Provider Voices
Fetch the complete, paginated catalog of voices available from a specific Text-to-Speech (TTS) provider. Whether your users want a “calm, British male” voice from ElevenLabs or an “energetic female” voice from Cartesia, this endpoint allows you to query, filter, and paginate through thousands of available voice models to find the perfect fit for your Voice Agent.Documentation Index
Fetch the complete documentation index at: https://docs.lyzr.ai/llms.txt
Use this file to discover all available pages before exploring further.
Authentication Required: You must include your API key in the
x-api-key header to authenticate this request.Required Parameters
providerId: This is the only strictly required parameter. You must specify which provider’s library you are querying (e.g.,elevenlabs,cartesia,deepgram). You can get the list of active providers using the List TTS Voice Providers endpoint.
Searching & Filtering
If the requested provider supports search and facets (which you can verify via the provider metadata endpoint), you can use the following query parameters to narrow down the results:q: A free-text search string. Pass a name or a descriptive adjective like “warm” or “news anchor”.language: Pass a standard ISO code (likeenores) to only return voices natively trained for that language.gender: Filter the catalog bymale,female, or other provider-supported gender tags.
Authorizations
Query Parameters
The internal ID of the TTS provider to query.
Available options:
cartesia, elevenlabs, deepgram, inworld, rime, sarvam Example:
"elevenlabs"
A search query to filter voices by name or characteristic (requires the provider to support search).
Example:
"friendly"
Filter voices by supported language code (e.g., 'en', 'es').
Example:
"en"
Filter voices by gender.
Example:
"female"
The maximum number of voices to return per page.
Example:
20
The pagination cursor to retrieve the next page of results.