---
title: "List voice clones"
method: GET
path: "/voice_clones"
tags: ["Voice Clones"]
---

# List voice clones

`GET /voice_clones`

Returns a paginated list of voice clones belonging to the authenticated account.

## Query parameters

- `page[number]` integer
- `page[size]` integer
- `filter[name]` string
- `filter[provider]` 'telnyx' | 'minimax'
- `sort` 'name' | '-name' | 'created_at' | '-created_at'

## Response `200`

A paginated list of voice clones.

- VoiceCloneListResponse — Paginated list of voice clones.
  - `data` VoiceCloneData[] — Array of voice clone objects.
    - `record_type` 'voice_clone' — Identifies the resource type.
    - `id` string, uuid — Unique identifier for the voice clone.
    - `source_voice_design_id` string, uuid, nullable — UUID of the source voice design. `null` for upload-based clones.
    - `source_voice_design_version` integer, nullable — Version of the source voice design used. `null` for upload-based clones.
    - `name` string — Name of the voice clone.
    - `language` string, nullable — ISO 639-1 language code of the voice clone.
    - `gender` 'male' | 'female' | 'neutral' | 'null', nullable — Gender of the voice clone.
    - `label` string, nullable — Voice style description. If not explicitly set on upload, falls back to the source design's prompt text.
    - `created_at` string, date-time — Timestamp when the voice clone was created.
    - `updated_at` string, date-time — Timestamp when the voice clone was last updated.
    - `provider` 'telnyx' | 'minimax' — Voice synthesis provider used for this clone.
    - `provider_supported_models` string[] — List of TTS model identifiers supported by this clone's provider.
    - `provider_voice_id` string, nullable — Provider-specific voice identifier used for TTS synthesis. May differ from the clone UUID depending on the provider and model.
    - `model_id` 'Qwen3TTS' | 'Ultra' | 'speech-2.8-turbo' — TTS model identifier for the voice clone.
    - `status` 'active' | 'pending' | 'failed' | 'expired' — Clone status. pending for Ultra clones while on-prem import is in progress, active once ready, failed if verification timed out, expired if not kept alive.
  - `meta` VoiceDesignsPaginationMeta — Pagination metadata returned with list responses.
    - `page_number` integer — Current page number (1-based).
    - `page_size` integer — Number of results per page.
    - `total_results` integer — Total number of results across all pages.
    - `total_pages` integer — Total number of pages.

## Other responses

- `401` — Unauthorized — missing or invalid bearer token.

---

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