> ## Documentation Index
> Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List voice clones

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



## OpenAPI

````yaml /openapi/voice-clones.yml get /voice_clones
openapi: 3.1.0
info:
  title: Voice Clones API
  version: 2.0.0
  description: >-
    Capture and manage voice identities as clones for use in text-to-speech
    synthesis.
  contact:
    email: support@telnyx.com
servers:
  - url: https://api.telnyx.com/v2
security:
  - bearerAuth: []
tags:
  - name: Voice Clones
    description: >-
      Capture and manage voice identities as clones for use in text-to-speech
      synthesis.
paths:
  /voice_clones:
    get:
      tags:
        - Voice Clones
      summary: List voice clones
      description: >-
        Returns a paginated list of voice clones belonging to the authenticated
        account.
      operationId: listVoiceClones
      parameters:
        - $ref: '#/components/parameters/voice-designs_PageNumber'
        - $ref: '#/components/parameters/voice-designs_PageSize'
        - $ref: '#/components/parameters/FilterName'
        - $ref: '#/components/parameters/FilterProvider'
        - $ref: '#/components/parameters/voice-designs_Sort'
      responses:
        '200':
          description: A paginated list of voice clones.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VoiceCloneListResponse'
        '401':
          description: Unauthorized — missing or invalid bearer token.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/voice-designs_ErrorResponse'
      x-codeSamples:
        - lang: JavaScript
          source: |-
            import Telnyx from 'telnyx';

            const client = new Telnyx({
              apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
            });

            // Automatically fetches more pages as needed.
            for await (const voiceCloneData of client.voiceClones.list()) {
              console.log(voiceCloneData.id);
            }
        - lang: Python
          source: |-
            import os
            from telnyx import Telnyx

            client = Telnyx(
                api_key=os.environ.get("TELNYX_API_KEY"),  # This is the default and can be omitted
            )
            page = client.voice_clones.list()
            page = page.data[0]
            print(page.id)
        - lang: Go
          source: "package main\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\n\t\"github.com/team-telnyx/telnyx-go\"\n\t\"github.com/team-telnyx/telnyx-go/option\"\n)\n\nfunc main() {\n\tclient := telnyx.NewClient(\n\t\toption.WithAPIKey(\"My API Key\"),\n\t)\n\tpage, err := client.VoiceClones.List(context.TODO(), telnyx.VoiceCloneListParams{})\n\tif err != nil {\n\t\tpanic(err.Error())\n\t}\n\tfmt.Printf(\"%+v\\n\", page)\n}\n"
        - lang: Java
          source: |-
            package com.telnyx.sdk.example;

            import com.telnyx.sdk.client.TelnyxClient;
            import com.telnyx.sdk.client.okhttp.TelnyxOkHttpClient;
            import com.telnyx.sdk.models.voiceclones.VoiceCloneListPage;
            import com.telnyx.sdk.models.voiceclones.VoiceCloneListParams;

            public final class Main {
                private Main() {}

                public static void main(String[] args) {
                    TelnyxClient client = TelnyxOkHttpClient.fromEnv();

                    VoiceCloneListPage page = client.voiceClones().list();
                }
            }
        - lang: Ruby
          source: |-
            require "telnyx"

            telnyx = Telnyx::Client.new(api_key: "My API Key")

            page = telnyx.voice_clones.list

            puts(page)
        - lang: CLI
          source: |-
            telnyx voice-clones list \
              --api-key 'My API Key'
components:
  parameters:
    voice-designs_PageNumber:
      name: page[number]
      in: query
      required: false
      description: Page number for pagination (1-based).
      schema:
        type: integer
        minimum: 1
        default: 1
    voice-designs_PageSize:
      name: page[size]
      in: query
      required: false
      description: Number of results per page.
      schema:
        type: integer
        minimum: 1
        maximum: 250
        default: 20
    FilterName:
      name: filter[name]
      in: query
      required: false
      description: Case-insensitive substring filter on the name field.
      schema:
        type: string
    FilterProvider:
      name: filter[provider]
      in: query
      required: false
      description: Filter by voice synthesis provider. Case-insensitive.
      schema:
        type: string
        enum:
          - telnyx
          - minimax
          - Telnyx
          - Minimax
    voice-designs_Sort:
      name: sort
      in: query
      required: false
      description: Sort order. Prefix with `-` for descending. Defaults to `-created_at`.
      schema:
        type: string
        enum:
          - name
          - '-name'
          - created_at
          - '-created_at'
        default: '-created_at'
  schemas:
    VoiceCloneListResponse:
      type: object
      description: Paginated list of voice clones.
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/VoiceCloneData'
          description: Array of voice clone objects.
        meta:
          $ref: '#/components/schemas/voice-designs_PaginationMeta'
    voice-designs_ErrorResponse:
      type: object
      description: Standard error response envelope.
      properties:
        errors:
          type: array
          items:
            $ref: '#/components/schemas/ErrorObject'
      example:
        errors:
          - code: '10005'
            title: Resource not found
            detail: Voice design not found
    VoiceCloneData:
      type: object
      description: A voice clone object.
      properties:
        record_type:
          type: string
          enum:
            - voice_clone
          description: Identifies the resource type.
        id:
          type: string
          format: uuid
          description: Unique identifier for the voice clone.
        source_voice_design_id:
          type:
            - string
            - 'null'
          format: uuid
          description: UUID of the source voice design. `null` for upload-based clones.
        source_voice_design_version:
          type:
            - integer
            - 'null'
          description: >-
            Version of the source voice design used. `null` for upload-based
            clones.
        name:
          type: string
          description: Name of the voice clone.
        language:
          type:
            - string
            - 'null'
          description: ISO 639-1 language code of the voice clone.
        gender:
          type:
            - string
            - 'null'
          enum:
            - male
            - female
            - neutral
            - null
          description: Gender of the voice clone.
        label:
          type:
            - string
            - 'null'
          description: >-
            Voice style description. If not explicitly set on upload, falls back
            to the source design's prompt text.
        created_at:
          type: string
          format: date-time
          description: Timestamp when the voice clone was created.
        updated_at:
          type: string
          format: date-time
          description: Timestamp when the voice clone was last updated.
        provider:
          type: string
          enum:
            - telnyx
            - minimax
            - Telnyx
            - Minimax
          description: Voice synthesis provider used for this clone.
        provider_supported_models:
          type: array
          items:
            type: string
          description: List of TTS model identifiers supported by this clone's provider.
        provider_voice_id:
          type:
            - string
            - 'null'
          description: >-
            Provider-specific voice identifier used for TTS synthesis. For
            Telnyx clones this equals the clone ID; for Minimax it is the
            Minimax-assigned voice ID.
    voice-designs_PaginationMeta:
      type: object
      description: Pagination metadata returned with list responses.
      properties:
        page_number:
          type: integer
          description: Current page number (1-based).
        page_size:
          type: integer
          description: Number of results per page.
        total_results:
          type: integer
          description: Total number of results across all pages.
        total_pages:
          type: integer
          description: Total number of pages.
      example:
        page_number: 1
        page_size: 20
        total_results: 42
        total_pages: 3
    ErrorObject:
      type: object
      description: A single error object.
      properties:
        code:
          type: string
          description: Telnyx-specific error code.
        title:
          type: string
          description: Short, human-readable summary of the error.
        detail:
          type: string
          description: Detailed, human-readable explanation of the error.
        source:
          type: object
          description: Reference to the source of the error.
          properties:
            pointer:
              type: string
              description: A JSON Pointer (RFC 6901) to the field that caused the error.

````