v1

latestOpenAPI 3.0.0Apache 2.0 License2026-07-1498353.7 KB

Returns the list of voices that are available for use when requesting speech synthesis. Each voice speaks a specified language, is either male or female, and is identified by an ID, which is the ASCII version of the voice name.

When synthesizing speech ( SynthesizeSpeech ), you provide the voice ID for the voice you want from the list of voices returned by DescribeVoices.

For example, you want your news reader application to read news in a specific language, but giving a user the option to choose the voice. Using the DescribeVoices operation you can provide the user with a list of available voices to select from.

You can optionally specify a language code to filter the available voices. For example, if you specify en-US, the operation returns a list of all available US English voices.

This operation requires permissions to perform the polly:DescribeVoices action.

get/v1/voices

Query parameters

Engine'standard' | 'neural'

Specifies the engine (<code>standard</code> or <code>neural</code>) used by Amazon Polly when processing input text for speech synthesis.

LanguageCode'arb' | 'cmn-CN' | 'cy-GB' | 'da-DK' | 'de-DE' | 'en-AU' | 'en-GB' | 'en-GB-WLS' | 'en-IN' | 'en-US' | 'es-ES' | 'es-MX' | 'es-US' | 'fr-CA' | 'fr-FR' | 'is-IS' | 'it-IT' | 'ja-JP' | 'hi-IN' | 'ko-KR' | 'nb-NO' | 'nl-NL' | 'pl-PL' | 'pt-BR' | 'pt-PT' | 'ro-RO' | 'ru-RU' | 'sv-SE' | 'tr-TR' | 'en-NZ' | 'en-ZA' | 'ca-ES' | 'de-AT' | 'yue-CN' | 'ar-AE' | 'fi-FI'

The language identification tag (ISO 639 code for the language name-ISO 3166 country code) for filtering the list of voices returned. If you don't specify this optional parameter, all available voices are returned.

IncludeAdditionalLanguageCodesboolean

Boolean value indicating whether to return any bilingual voices that use the specified language as an additional language. For instance, if you request all languages that use US English (es-US), and there is an Italian voice that speaks both Italian (it-IT) and US English, that voice will be included if you specify <code>yes</code> but not if you specify <code>no</code>.

NextTokenstring

An opaque pagination token returned from the previous <code>DescribeVoices</code> operation. If present, this indicates where to continue the listing.

Response

Success

NextTokenstring

The pagination token to use in the next request to continue the listing of voices. <code>NextToken</code> is returned only if the response is truncated.

Example response

{
  "Voices": [
    {
      "Gender": "Female",
      "Id": "Emma",
      "LanguageCode": "en-GB",
      "LanguageName": "British English",
      "Name": "Emma"
    },
    {
      "Gender": "Male",
      "Id": "Brian",
      "LanguageCode": "en-GB",
      "LanguageName": "British English",
      "Name": "Brian"
    },
    {
      "Gender": "Female",
      "Id": "Amy",
      "LanguageCode": "en-GB",
      "LanguageName": "British English",
      "Name": "Amy"
    }
  ]
}