---
title: "Get Voice"
api: "GET /v1/api/voices/{id}"
description: "Retrieve a specific voice by its ID."
---

## Headers
<ParamField header="x-workspace-id" type="string" required>
Workspace identifier for the API.
</ParamField>

## Path Parameters

<ParamField path="id" type="string" required>
The unique identifier of the voice.
</ParamField>

## Response Fields

<ResponseField name="_id" type="string">
Unique identifier for the voice.
</ResponseField>

<ResponseField name="name" type="string">
Display name of the voice.
</ResponseField>

<ResponseField name="voiceId" type="string">
Voice ID used in TTS configuration.
</ResponseField>

<ResponseField name="provider" type="string">
TTS provider for this voice.
</ResponseField>

<ResponseField name="gender" type="string">
Gender of the voice.
</ResponseField>

<ResponseField name="accent" type="string">
Accent of the voice.
</ResponseField>

<ResponseField name="description" type="string">
Description of the voice characteristics.
</ResponseField>

<ResponseExample>
```json
{
  "_id": "665a1b2c3d4e5f6a7b8c9d0e",
  "name": "Wildflower",
  "voiceId": "mistv2_Wildflower",
  "provider": "rime",
  "gender": "female",
  "accent": "american",
  "description": "Alt Female, Smart"
}
```
</ResponseExample>
