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

# List voices

`GET /v1/voices`

List custom voices for the authenticated organization with cursor-based pagination.

## Query parameters

- `cursor` string
- `limit` integer, required

## Headers

- `X-Runway-Version` '2024-11-06', required

## Response `200`

Success

- object
  - `data` union[], required — The list of items for the current page.
    - union
      - object — A voice that is still being processed.
        - `id` string, uuid, required — The unique identifier of the voice.
        - `name` string, required — The name of the voice.
        - `description` string, nullable, required — A description of the voice, or null if not set.
        - `createdAt` string, date-time, required — When the voice was created.
        - `status` 'PROCESSING', required
      - object — A voice that is ready for use.
        - `id` string, uuid, required — The unique identifier of the voice.
        - `name` string, required — The name of the voice.
        - `description` string, nullable, required — A description of the voice, or null if not set.
        - `createdAt` string, date-time, required — When the voice was created.
        - `status` 'READY', required
        - `previewUrl` string, uri, nullable, required — A signed URL to an MP3 audio sample of the voice, or null if no sample is available.
      - object — A voice that failed to finish processing.
        - `id` string, uuid, required — The unique identifier of the voice.
        - `name` string, required — The name of the voice.
        - `description` string, nullable, required — A description of the voice, or null if not set.
        - `createdAt` string, date-time, required — When the voice was created.
        - `status` 'FAILED', required
        - `failureReason` string, required — A human-readable error message. This value is not stable and should not be matched against programmatically.
  - `hasMore` boolean, required — Whether there are more items available after this page.
  - `nextCursor` string, nullable, required — Cursor to use for fetching the next page, or null if there are no more pages.

---

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