List TTS Voices
Text-to-Speech
List TTS Voices
List available Google Cloud Text-to-Speech voices
GET
List TTS Voices
Overview
Retrieve the list of available Text-to-Speech voices provided by Google Cloud, so you can pick a specificvoice_name when calling the /tts endpoint.
Query Parameters
Optional language filter (e.g.
en, es, fr). When provided, only voices that support this language are returned.Example Request
Response
Array of voice objects
The unique voice identifier (use this value as
voice_name in the /tts endpoint). This is the technical voice code (e.g., en-US-Neural2-F).A human-readable name for the voice (e.g.,
US English Neural2 (Female)). Use this for display purposes in your UI.List of BCP-47 language codes supported by this voice (e.g.
["en-US"])Voice gender as defined by Google Cloud (
MALE, FEMALE, NEUTRAL)Natural sample rate of the voice in Hz
The voice model type (e.g.,
Neural2, Neural, Studio, News, WaveNet, Standard). Neural2 and Neural models provide higher quality, more natural-sounding speech.Example Response
Understanding Voice Names
Voice names follow a pattern that encodes important information:Voice Code Format
Voice codes follow the format:{language}-{locale}-{model}-{gender}
- Language: Language code (e.g.,
enfor English) - Locale: Regional variant (e.g.,
US,GB,AUfor US English, British English, Australian English) - Model: Voice model type (e.g.,
Neural2,Neural,WaveNet,Standard) - Gender:
F(Female),M(Male), orA(Any/Neutral)
Examples
en-US-Neural2-F→ US English Neural2 (Female): High-quality neural voice with US accent, female genderen-GB-Neural-D→ British English Neural (Male): Neural voice with British accent, male genderen-AU-Standard-B→ Australian English Standard (Any): Standard quality voice with Australian accent
Voice Properties
Locales indicate the regional accent:US- United States EnglishGB- British EnglishAU- Australian EnglishCA- Canadian EnglishIN- Indian EnglishIE- Irish EnglishNZ- New Zealand EnglishZA- South African English
Neural2- Latest high-quality neural voices (recommended)Neural- High-quality neural voicesWaveNet- Advanced WaveNet voicesStudio- Professional studio-quality voicesNews- News broadcaster style voicesStandard- Standard quality voices (faster, lower cost)
en-IN-Chirp, en-IN-Neural2, en-GB-Neural2, en-GB-Chirp, en-AU-Neural2, and en-AU-Chirp) are not available as they are incompatible with the current API version.
Usage with /tts
To use a specific voice, pass its name as the voice_name field in the /tts request body.