Voice Selection Guide
A guide on how to find voice IDs to use and how to query voice information in API/Play.
The most important element in voice synthesis is the voice ID that determines which voice will read the text. This document guides you on how to find the desired voice and how to check voice information needed for API calls.
1. What is a Voice ID?
voice_id
is a value that identifies one unique character.
When synthesizing speech, you need to pass language, style, and model information along with this voice ID to generate accurate speech.
2. Three Ways to Find Voice IDs
2.1 Copy from Supertone Play
The fastest and most intuitive way is to copy the voice_id
from the voice library in Supertone Play.
- Click the Copy voice ID button within each voice item
- The voiceโs ID will be copied to your clipboard
- Cloned voices can also be checked in a separate tab
Preset Voice Example:
Cloned Voice Example:
2.2 Get Complete Voice List with GET /v1/voices
To check the complete list of available voices without conditions through the API, use the GET /voices
endpoint.
The response includes the following information:
voice_id
: ID to be used in callsname
: Character name (e.g., Agatha, Adam, etc.)language
: List of supported languagesstyles
: List of selectable stylesmodels
: Available voice modelssamples
: Sample audio by language/style/modelthumbnail_image_url
: Voice image
Response example:
2.3 Filter by Conditions with GET /v1/voices/search
If you want to find only voices that match specific language, style, or purpose, try the GET /voices/search
endpoint.
Supported Filters:
language
: Language code (ko, en, ja, etc.)style
: Emotional style (neutral, happy, etc.)name
,description
,gender
,age
,use_case
can also be searched
Sorting functionality is not supported, and accurate condition specification is important.
๐ Looking for Cloned Voices?
Searching with name=My Voice
will show all cloned voices created in your current account.
A response example for the above search is as follows:
3. Check Sample Audio and Style Information
The samples
field in the voice object contains sample audio based on language, style, and model combinations.
Accessing this URL allows you to download actual speech samples. Since different characters support different style/language/model combinations, please check before use.
4. Next Steps
Once youโve found a voice ID, refer to the Text-to-Speech Guide to continue with text input, parameter settings, and audio output format specification.