Skip to main content
GET
/
tts
/
v1
/
voices
cURL
curl --request GET \
  --url 'https://api.inworld.ai/tts/v1/voices?filter=language=en' \
  --header 'Authorization: Basic <api-key>'
{
  "voices": [
    {
      "languages": [
        "<string>"
      ],
      "voiceId": "<string>",
      "displayName": "<string>",
      "description": "<string>",
      "tags": [
        "<string>"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Your authentication credentials. For Basic authentication, please populate Basic $INWORLD_RUNTIME_BASE64_CREDENTIAL

Query Parameters

filter
string

A filter expression to filter the voices. Currently, only the following filter is supported:

  • language: Expects an ISO 639-1 language code. For example, language=en.

Response

voices
object[]

The list of voices.