Skip to main content
GET
/
v1
/
accounts
/
{accountId}
/
voice-library
List all voices in the account's voice library
curl --request GET \
  --url https://api.us.poly.ai/v1/accounts/{accountId}/voice-library \
  --header 'X-API-KEY: <api-key>'
{
  "voices": [
    {
      "id": "<string>",
      "name": "<string>",
      "provider": "<string>",
      "providerVoiceId": "<string>",
      "config": {},
      "metadata": {},
      "isPolyVoice": false
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.poly.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-KEY
string
header
required

Path Parameters

accountId
string
required

Query Parameters

language
string

Filter by voice metadata language, e.g. 'en-US'

gender
enum<string>

Filter by voice metadata gender

Available options:
male,
female,
neutral
provider
string

Filter by TTS provider, e.g. 'GOOGLE', 'ELEVENLABS'

isPolyVoice
boolean

If set, restrict to (or exclude) Poly's curated voices

Response

Successful response

Response for GET /voice-library.

voices
object[]
required
Last modified on June 1, 2026