> For clean Markdown of any page, append `.md` to the page URL.
> For a complete documentation index, see https://docs.sarvam.ai/llms.txt.
> For full documentation content in one file, see https://docs.sarvam.ai/llms-full.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.sarvam.ai/_mcp/server.

# List Voices

GET https://api.sarvam.ai/voices

Lists the cloned voices in your workspace, newest first. Use the returned `id` with POST /voices/clone (`voice_id`) or GET /voices/\{voice\_id}.

**Base URL:** `https://api.sarvam.ai`.
**Auth:** send your key in the `api-subscription-key` header.

Reference: https://docs.sarvam.ai/api-reference/voice-cloning/list-voices

## Authentication

- `api-subscription-key` header (required) — API Key authentication via header

## Request

### Query parameters

- `search` (string, optional) — Filter voices by name (substring match).
- `gender` (string, optional) — Filter by gender tag (`male` or `female`).
- `accent` (string, optional) — Filter by accent tag.
- `limit` (integer, optional, default: 50) — Page size (max 200).
- `offset` (integer, optional, default: 0) — Pagination offset.

## Response

### 200

A page of cloned voices.

- `status` (string, required) — `success`
- `data` (object, required)
  - `voices` (list of object, required)
    - `id` (string, required) — Unique voice ID.
    - `name` (string, required)
    - `language` (string, required)
    - `status` (string, required) — `active` or `deleted`.
    - `source` (string, required) — `cloned` for voice-clone voices.
    - `created_by` (string, required)
    - `created_at` (string, required)
    - `has_preview` (boolean, required)
    - `gender` (string, optional, nullable)
    - `accent` (string, optional, nullable)
    - `descriptor` (string, optional, nullable) — Style descriptor (e.g. `conversational`, `sales`).
    - `created_by_name` (string, optional, nullable)
    - `created_by_email` (string, optional, nullable)
    - `sample_duration_seconds` (double, optional, nullable)
    - `is_favorited` (boolean, optional)
  - `total` (integer, required) — Number of voices in this page.

## Errors

### 401 Unauthorized Error

Unauthorized. The `api-subscription-key` header is missing or invalid.

- `error` (object, required) — Error details
  - `request_id` (string, required, nullable)
  - `message` (string, required) — Message describing the error
  - `code` (enum, required) — Error code for the specific error that has occurred. Refer to the error code documentation for more details.
    - Allowed values: `invalid_request_error`, `internal_server_error`, `unprocessable_entity_error`, `insufficient_quota_error`, `invalid_api_key_error`, `authentication_error`, `not_found_error`, `rate_limit_exceeded_error`, `model_call_error`, `gateway_timeout_error`, `billing_service_unavailable_error`

### 500 Internal Server Error

Internal Server Error.

- `error` (object, required) — Error details
  - `request_id` (string, required, nullable)
  - `message` (string, required) — Message describing the error
  - `code` (enum, required) — Error code for the specific error that has occurred. Refer to the error code documentation for more details.
    - Allowed values: `invalid_request_error`, `internal_server_error`, `unprocessable_entity_error`, `insufficient_quota_error`, `invalid_api_key_error`, `authentication_error`, `not_found_error`, `rate_limit_exceeded_error`, `model_call_error`, `gateway_timeout_error`, `billing_service_unavailable_error`

## Examples

**Response**

```json
{
  "status": "success",
  "data": {
    "voices": [
      {
        "id": "svc-efb9cac0-c63d-433a-9903-b3f0b0865b2b",
        "name": "my-cloned-voice",
        "language": "en-IN",
        "status": "active",
        "source": "cloned",
        "created_by": "user-uuid",
        "created_at": "2026-09-04T13:31:06.561329Z",
        "has_preview": true,
        "gender": null,
        "accent": null,
        "descriptor": "conversational",
        "created_by_name": null,
        "created_by_email": null,
        "sample_duration_seconds": 5.24,
        "is_favorited": false
      }
    ],
    "total": 1
  }
}
```

**SDK Code**

```typescript voiceCloning_listVoices_example
import { SarvamAIClient } from "sarvamai";

const client = new SarvamAIClient({
  apiSubscriptionKey: process.env.SARVAM_API_KEY,
});

const response = await client.voiceCloning.listVoices({ limit: 50 });
for (const voice of response.voices) {
  console.log(voice.id, voice.name, voice.status);
}

```

```typescript voiceCloning_listVoices_example
import { SarvamAIClient } from "sarvamai";

async function main() {
    const client = new SarvamAIClient({
        apiSubscriptionKey: "YOUR_API_KEY_HERE",
    });
    await client.voiceCloning.listVoices({});
}
main();

```

```python voiceCloning_listVoices_example
from sarvamai import SarvamAI

client = SarvamAI(
    api_subscription_key="YOUR_API_KEY_HERE",
)

client.voice_cloning.list_voices()

```

```go voiceCloning_listVoices_example
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.sarvam.ai/voices"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("api-subscription-key", "<apiSubscriptionKey>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby voiceCloning_listVoices_example
require 'uri'
require 'net/http'

url = URI("https://api.sarvam.ai/voices")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["api-subscription-key"] = '<apiSubscriptionKey>'

response = http.request(request)
puts response.read_body
```

```java voiceCloning_listVoices_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://api.sarvam.ai/voices")
  .header("api-subscription-key", "<apiSubscriptionKey>")
  .asString();
```

```php voiceCloning_listVoices_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api.sarvam.ai/voices', [
  'headers' => [
    'api-subscription-key' => '<apiSubscriptionKey>',
  ],
]);

echo $response->getBody();
```

```csharp voiceCloning_listVoices_example
using RestSharp;

var client = new RestClient("https://api.sarvam.ai/voices");
var request = new RestRequest(Method.GET);
request.AddHeader("api-subscription-key", "<apiSubscriptionKey>");
IRestResponse response = client.Execute(request);
```

```swift voiceCloning_listVoices_example
import Foundation

let headers = ["api-subscription-key": "<apiSubscriptionKey>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://api.sarvam.ai/voices")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```