Skip to main content
GET
/
voices
/
v1
/
workspaces
/
{workspace}
/
voices
Lists voices in a workspace
curl --request GET \
  --url https://api.inworld.ai/voices/v1/workspaces/{workspace}/voices \
  --header 'Authorization: <api-key>'
{
  "voices": [
    {
      "langCode": "EN_US",
      "displayName": "<string>",
      "name": "<string>",
      "description": "<string>",
      "tags": [
        "<string>"
      ],
      "voiceId": "<string>"
    }
  ]
}
Short URL Path: The workspace ID is required to uniquely identify a voice resource, but you can omit /workspaces/{workspace} from the path. When omitted, the workspace is derived from your API key.

Authorizations

Authorization
string
header
required

Your API key. Make sure your API key has write permissions for the Voice API.

For Basic authentication, please populate Basic $INWORLD_BASE64_CREDENTIAL

Path Parameters

workspace
string
required

Workspace ID

Query Parameters

languages
string[]

Optional language filter for union filtering (voices matching ANY of the specified languages) Supported formats: EN_US or en. Example: ?languages=EN_US&languages=es returns voices in either English or Spanish

Response

A successful response.

Response message for ListVoices.

voices
List of voices · object[]