---
title: "Get a voice"
method: GET
path: "/v1/voices/{id}"
tags: ["Voices"]
---

# Get a voice

`GET /v1/voices/{id}`

Get details about a specific custom voice.

## Path parameters

- `id` string, uuid, required

## Headers

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

## Response `200`

Success

- 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.

---

[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)
