Realtime TTS 2.0 is available now in research preview! Learn more
curl --location 'https://api.inworld.ai/tts/v1/voices?filter=language%3Den' \
--header "Authorization: Basic $INWORLD_API_KEY"{
"voices": [
{
"languages": [
"en"
],
"voiceId": "Alex",
"displayName": "Alex",
"isCustom": false,
"description": "Energetic and expressive mid-range male voice, with a mildly nasal quality",
"tags": [
"male",
"energetic",
"expressive",
"mid-range"
]
},
{
"languages": [
"en"
],
"voiceId": "Ashley",
"displayName": "Ashley",
"isCustom": false,
"description": "A warm, natural female voice",
"tags": [
"female",
"warm",
"natural"
]
},
{
"languages": [
"en"
],
"voiceId": "Dennis",
"displayName": "Dennis",
"isCustom": false,
"description": "Middle-aged man with a smooth, calm and friendly voice",
"tags": [
"male",
"middle-aged",
"smooth",
"calm",
"friendly"
]
}
]
}List all available voices based on the provided filter.
⚠️ Deprecation Notice: This endpoint is deprecated. Use the Voices API’s List Voices instead for new features and better performance. This API is scheduled to be removed on July 1, 2026.
curl --location 'https://api.inworld.ai/tts/v1/voices?filter=language%3Den' \
--header "Authorization: Basic $INWORLD_API_KEY"{
"voices": [
{
"languages": [
"en"
],
"voiceId": "Alex",
"displayName": "Alex",
"isCustom": false,
"description": "Energetic and expressive mid-range male voice, with a mildly nasal quality",
"tags": [
"male",
"energetic",
"expressive",
"mid-range"
]
},
{
"languages": [
"en"
],
"voiceId": "Ashley",
"displayName": "Ashley",
"isCustom": false,
"description": "A warm, natural female voice",
"tags": [
"female",
"warm",
"natural"
]
},
{
"languages": [
"en"
],
"voiceId": "Dennis",
"displayName": "Dennis",
"isCustom": false,
"description": "Middle-aged man with a smooth, calm and friendly voice",
"tags": [
"male",
"middle-aged",
"smooth",
"calm",
"friendly"
]
}
]
}Documentation Index
Fetch the complete documentation index at: https://dev.docs.inworld.ai/llms.txt
Use this file to discover all available pages before exploring further.
Your authentication credentials. For Basic authentication, please populate Basic $INWORLD_API_KEY
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."language=en"
The list of voices.
Show child attributes