---
title: "List Voices"
method: GET
path: "/v3/voices"
tags: ["Voices"]
---

# List Voices

`GET /v3/voices`

Returns a paginated list of voices, filterable by type, engine, language, and gender. Use engine=starfish for voices compatible with the TTS endpoint.

## Query parameters

- `type` 'public' | 'private'
- `engine` string
- `language` string
- `gender` string
- `limit` integer
- `token` string

## Response `200`

Successful response

- object
  - `data` AudioVoiceItem[]
    - `voice_id` string, required — Unique voice identifier.
    - `name` string, required — Display name of the voice.
    - `language` string, required — Primary language of the voice.
    - `gender` string, required — Gender of the voice.
    - `preview_audio_url` string, nullable — URL to a short audio preview of the voice.
    - `support_pause` boolean, required — Whether the voice supports SSML pause/break tags.
    - `support_locale` boolean, required — Whether the voice supports locale variants.
    - `type` 'public' | 'private', required
  - `has_more` boolean — Whether more pages are available
  - `next_token` string, nullable — Opaque cursor for the next page

## Other responses

- `400` — Invalid request parameters
- `401` — Authentication failed
- `429` — Rate limit exceeded

---

[API](https://skmtc.net/heygen/apis/heygen-external-api.md) · [All operations](https://skmtc.net/heygen/apis/heygen-external-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/heygen/heygen-external-api/versions/e2e54726e210/schema)
