> ## Documentation Index
> Fetch the complete documentation index at: https://dev.docs.inworld.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List PVC voices

> Lists Professional Voice Clones owned by the calling workspace, across every state (draft, queued, training, ready, and failed).

<Note>
  Returns PVC voices in every lifecycle state — draft, queued, training, ready, and failed — for the workspace resolved from your API key. There's no server-side `state` filter yet; filter the `state` field on the client if you only want, for example, ready voices.
</Note>

Once a voice reaches `PVC_VOICE_STATE_READY` here, it's also returned alongside your other voices from [List voices](/api-reference/voiceAPI/voiceservice/list-voices) (`source = "PVC"`).


## OpenAPI

````yaml get /voices/v1/pvcVoices
openapi: 3.0.0
info:
  title: Inworld Professional Voice Cloning API
  version: v1
  contact:
    name: Inworld AI
    url: https://inworld.ai
    email: support@inworld.ai
servers:
  - url: https://api.inworld.ai
security:
  - inworld_basic: []
tags:
  - name: PvcVoiceService
paths:
  /voices/v1/pvcVoices:
    get:
      tags:
        - PvcVoiceService
      summary: List PVC voices in a workspace
      description: >-
        Lists Professional Voice Clones owned by the calling workspace, across
        every state (draft, queued, training, ready, and failed).
      operationId: PvcVoiceService_ListPvcVoices
      parameters:
        - name: pageSize
          description: Maximum number of voices to return per page.
          in: query
          required: false
          schema:
            type: integer
            format: int32
        - name: pageToken
          description: >-
            Opaque pagination cursor from a previous response's `nextPageToken`.
            Pass it back unchanged to retrieve the next page.
          in: query
          required: false
          schema:
            type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/inworldvoicev1ListPvcVoicesResponse'
              examples:
                successful_response:
                  summary: Paginated list of PVC voices
                  value:
                    pvcVoices:
                      - name: >-
                          workspaces/your_workspace_id/pvcVoices/my-professional-voice
                        voiceId: my-professional-voice
                        displayName: my-professional-voice
                        languageCode: en-US
                        state: PVC_VOICE_STATE_READY
                        incarnationId: a1b2c3d4
                        createTime: '2026-08-31T12:00:00Z'
                        updateTime: '2026-08-31T12:41:00Z'
                    nextPageToken: ''
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      x-codeSamples:
        - lang: bash
          label: cURL
          source: |-
            curl -sG 'https://api.inworld.ai/voices/v1/pvcVoices' \
              -H "Authorization: Basic $INWORLD_API_KEY" \
              --data-urlencode 'pageSize=20'
        - lang: python
          label: Python
          source: |-
            import requests

            url = "https://api.inworld.ai/voices/v1/pvcVoices"
            headers = {"Authorization": "Basic <api-key>"}

            params = {"pageSize": 20}

            while True:
                response = requests.get(url, headers=headers, params=params)
                data = response.json()
                for voice in data.get("pvcVoices", []):
                    print(voice["displayName"], voice["state"])
                next_token = data.get("nextPageToken", "")
                if not next_token:
                    break
                params["pageToken"] = next_token
        - lang: javascript
          label: JavaScript
          source: |-
            const base = 'https://api.inworld.ai/voices/v1/pvcVoices';
            const headers = { 'Authorization': 'Basic <api-key>' };

            let pageToken = '';
            do {
              const params = new URLSearchParams({
                pageSize: '20',
                ...(pageToken && { pageToken }),
              });
              const res = await fetch(`${base}?${params}`, { headers });
              const data = await res.json();
              for (const voice of data.pvcVoices ?? []) {
                console.log(voice.displayName, voice.state);
              }
              pageToken = data.nextPageToken ?? '';
            } while (pageToken);
components:
  schemas:
    inworldvoicev1ListPvcVoicesResponse:
      type: object
      properties:
        pvcVoices:
          type: array
          items:
            $ref: '#/components/schemas/inworldvoicev1PvcVoice'
          description: PVC voices for this page.
        nextPageToken:
          type: string
          description: >-
            Opaque cursor to pass as `pageToken` to fetch the next page. Empty
            string when there are no more pages.
      description: Response message for ListPvcVoices.
    rpcStatus:
      type: object
      properties:
        code:
          type: integer
          format: int32
          description: >-
            The status code, which should be an enum value of
            [google.rpc.Code][google.rpc.Code].
        message:
          type: string
          description: >-
            A developer-facing error message, which should be in English. Any
            user-facing error message should be localized and sent in the
            [google.rpc.Status.details][google.rpc.Status.details] field, or
            localized by the client.
        details:
          type: array
          items:
            $ref: '#/components/schemas/protobufAny'
          description: >-
            A list of messages that carry the error details. There is a common
            set of message types for APIs to use.
      description: >-
        The `Status` type defines a logical error model that is suitable for
        different programming environments, including REST APIs and RPC APIs.
    inworldvoicev1PvcVoice:
      type: object
      properties:
        name:
          type: string
          description: 'Resource name. Format: `workspaces/{workspace}/pvcVoices/{voice}`.'
          readOnly: true
        voiceId:
          type: string
          description: >-
            Voice ID, derived from `displayName` at creation time. Use this
            value as `{voiceId}` on every other PVC endpoint, and as the
            `voiceId` in TTS synthesis requests once the voice is
            `PVC_VOICE_STATE_READY`.
          readOnly: true
        displayName:
          type: string
          description: >-
            The human-readable name shown anywhere the voice is listed or
            selected.
        languageCode:
          type: string
          description: >-
            The voice's language as a BCP-47-shaped locale string, e.g. `en-US`.
            Immutable after creation.
        state:
          $ref: '#/components/schemas/inworldvoicev1PvcVoiceState'
        failure:
          $ref: '#/components/schemas/inworldvoicev1PvcVoiceFailure'
        incarnationId:
          type: string
          description: >-
            Identifier that stays stable across edits to the same voice, and
            changes each time it is retrained. Use it to tell two reads of the
            same `voiceId` apart across a retrain.
          readOnly: true
        samples:
          type: array
          items:
            $ref: '#/components/schemas/inworldvoicev1PvcVoiceSample'
          description: Audio samples currently attached to the voice.
          readOnly: true
        createTime:
          type: string
          format: date-time
          readOnly: true
        updateTime:
          type: string
          format: date-time
          readOnly: true
      description: A Professional Voice Clone resource.
    protobufAny:
      type: object
      properties:
        '@type':
          type: string
          description: >-
            A URL/resource name that uniquely identifies the type of the
            serialized protocol buffer message.
      additionalProperties: {}
      description: >-
        `Any` contains an arbitrary serialized protocol buffer message along
        with a URL that describes the type of the serialized message.
    inworldvoicev1PvcVoiceState:
      type: string
      enum:
        - PVC_VOICE_STATE_UNSPECIFIED
        - PVC_VOICE_STATE_DRAFT
        - PVC_VOICE_STATE_QUEUED
        - PVC_VOICE_STATE_TRAINING
        - PVC_VOICE_STATE_READY
        - PVC_VOICE_STATE_FAILED
      description: >-
        Lifecycle state of a PVC voice.


        - `PVC_VOICE_STATE_DRAFT`: Editable. Samples can be added, trimmed, or
        removed, and metadata can be updated.

        - `PVC_VOICE_STATE_QUEUED`: Training requested; waiting for a training
        slot.

        - `PVC_VOICE_STATE_TRAINING`: Actively training.

        - `PVC_VOICE_STATE_READY`: Training succeeded. Usable for TTS synthesis;
        permanent — cannot be deleted through this API.

        - `PVC_VOICE_STATE_FAILED`: Training failed. Editing the voice (e.g.
        renaming it, or adding/removing a sample) returns it to
        `PVC_VOICE_STATE_DRAFT` with its remaining samples intact.
    inworldvoicev1PvcVoiceFailure:
      type: object
      properties:
        reason:
          type: string
          description: >-
            Machine-readable failure code, e.g. `TRAINING_ERROR`. New values may
            be added over time, so don't validate against a hardcoded list —
            fall back to displaying `message` for codes you don't recognize.
        message:
          type: string
          description: >-
            Human-readable, scrubbed failure message. Never contains uploaded
            audio, filenames, or transcripts.
      description: Populated on a PVC voice when its `state` is `PVC_VOICE_STATE_FAILED`.
    inworldvoicev1PvcVoiceSample:
      type: object
      properties:
        sampleId:
          type: string
          description: >-
            Sample ID. Use this value as `{sampleId}` when trimming or deleting
            the sample.
          readOnly: true
        name:
          type: string
          description: >-
            Resource name. Format:
            `workspaces/{workspace}/pvcVoices/{voice}/samples/{sample}`.
          readOnly: true
        sizeBytes:
          type: integer
          format: int64
          description: Size of the uploaded file, in bytes.
          readOnly: true
        durationSecs:
          type: number
          format: float
          description: >-
            Analyzed duration of the sample, in seconds, before any trim is
            applied.
          readOnly: true
        mimeType:
          type: string
          enum:
            - audio/wav
            - audio/webm
            - audio/mpeg
          description: Detected audio format, sniffed from the file's byte content.
          readOnly: true
        hash:
          type: string
          description: >-
            Base64-encoded MD5 of the stored object, for verifying upload
            integrity against the source file.
          readOnly: true
        trimStartMs:
          type: integer
          format: int32
          nullable: true
          description: Trim start offset in milliseconds, if set.
        trimEndMs:
          type: integer
          format: int32
          nullable: true
          description: Trim end offset in milliseconds, if set.
      description: A single uploaded audio sample belonging to a PVC voice.
  securitySchemes:
    inworld_basic:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        Your [API key](../../../api-reference/introduction). Read permissions
        are required for GET endpoints. Write permissions are required for POST,
        PATCH, and DELETE endpoints.

         For Basic authentication, please populate `Basic $INWORLD_API_KEY`. You can create a key in one command with the [Inworld CLI](../../../tts/resources/inworld-cli): `inworld workspace add-key`.

````