Skip to main content
GET
/
voices
/
v1
/
voices
Lists voices in a workspace
curl --request GET \
  --url https://api.inworld.ai/voices/v1/voices \
  --header 'Authorization: <api-key>'
{
  "voices": [
    {
      "voiceId": "<string>",
      "langCode": "EN_US",
      "displayName": "<string>",
      "description": "<string>",
      "tags": [
        "<string>"
      ],
      "name": "<string>"
    }
  ]
}
Short URL Path: /workspaces/{workspace} is no longer required in the path for simplicity and clarity. When omitted, the workspace is derived from your API key. The previous URL with the full path /voices/v1/workspaces/{workspace}/voices would continue to be supported.

Authorizations

Authorization
string
header
required

Your API key. Read permissions are required for GET endpoints. Write permissions are required for POST, PATCH, and DELETE endpoints.

For Basic authentication, please populate Basic $INWORLD_BASE64_CREDENTIAL

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[]