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

# List voices

`GET /api/v2/voices`

Returns all voices in the workspace voice registry.

## Query parameters

- `limit` integer
- `starting_after` string, nullable
- `search` string, nullable — Case-insensitive substring filter applied to the voice name.

## Headers

- `X-API-KEY` string, nullable
- `Authorization` string, nullable
- `X-Workspace-Id` string, nullable

## Response `200`

Successful Response

- ListResponseVoiceResponse
  - `data` VoiceResponse[], required
    - `object` 'voice' — Object type identifier.
    - `id` string, required — Registry voice ID (wrv-prefixed).
    - `provider` string, required — Voice provider: 'elevenlabs', 'cartesia', or 'lmnt'.
    - `provider_voice_id` string, required — Provider-specific voice identifier.
    - `name` string, required — Human-readable voice name.
    - `language` string, nullable — BCP-47 language code.
    - `country_code` string, nullable — ISO country code.
    - `gender` string, nullable — Voice gender: 'male', 'female', or 'neutral'.
    - `preview_url` string, nullable — URL to an audio preview of the voice.
    - `labels` object — Provider-defined labels (e.g. accent, age, style).
    - `created_at` number, required — Unix timestamp when the voice was added to the registry.
    - `updated_at` number, required — Unix timestamp when the voice was last updated.
  - `pagination` PaginationMeta, required
    - `has_more` boolean, required — Whether more results exist beyond this page
    - `total_count` integer, nullable — Total number of results (if available)
    - `url` string, nullable — URL of this resource

## Other responses

- `401` — Invalid or missing API key.
- `422` — Validation Error
- `429` — Rate limit exceeded.

---

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