> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://developers.meshapi.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://developers.meshapi.ai/_mcp/server.

# List Voices

GET https://api.meshapi.ai/v1/audio/voices

List available TTS voices across every provider, filterable by model `brand`.

A unified, normalised catalog spanning ElevenLabs, Together, and DeepInfra:
  - **Together** voices are fetched live from its `/v1/voices` endpoint
    (Cartesia and any other dynamic models).
  - **Kokoro / Orpheus** preset voices (shared by Together + DeepInfra) come
    from a static catalog — DeepInfra exposes no per-model preset listing.
  - **ElevenLabs** account voices are fetched live.

Filters (case-insensitive): `brand` (e.g. `elevenlabs`, `hexgrad`,
`canopylabs`, `cartesia`), `model` (canonical model_id), and `search`
(substring match on voice id / name). Per-provider fetches are best-effort —
a provider that errors is skipped rather than failing the whole listing.

Reference: https://developers.meshapi.ai/api-reference/mesh-api/audio/list-voices

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: openapi
  version: 1.0.0
paths:
  /v1/audio/voices:
    get:
      operationId: list-voices
      summary: List Voices
      description: >-
        List available TTS voices across every provider, filterable by model
        `brand`.


        A unified, normalised catalog spanning ElevenLabs, Together, and
        DeepInfra:
          - **Together** voices are fetched live from its `/v1/voices` endpoint
            (Cartesia and any other dynamic models).
          - **Kokoro / Orpheus** preset voices (shared by Together + DeepInfra) come
            from a static catalog — DeepInfra exposes no per-model preset listing.
          - **ElevenLabs** account voices are fetched live.

        Filters (case-insensitive): `brand` (e.g. `elevenlabs`, `hexgrad`,

        `canopylabs`, `cartesia`), `model` (canonical model_id), and `search`

        (substring match on voice id / name). Per-provider fetches are
        best-effort —

        a provider that errors is skipped rather than failing the whole listing.
      tags:
        - audio
      parameters:
        - name: brand
          in: query
          required: false
          schema:
            type:
              - string
              - 'null'
        - name: model
          in: query
          required: false
          schema:
            type:
              - string
              - 'null'
        - name: search
          in: query
          required: false
          schema:
            type:
              - string
              - 'null'
        - name: Authorization
          in: header
          description: Bearer authentication
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VoicesResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
servers:
  - url: https://api.meshapi.ai
    description: Production Server
components:
  schemas:
    VoiceInfo:
      type: object
      properties:
        voice_id:
          type: string
        name:
          type: string
        brand:
          type: string
        provider:
          type: string
        model:
          type:
            - string
            - 'null'
        language:
          type:
            - string
            - 'null'
        gender:
          type:
            - string
            - 'null'
        preview_url:
          type:
            - string
            - 'null'
      required:
        - voice_id
        - name
        - brand
        - provider
      description: >-
        A single TTS voice, normalised across providers.


        ``brand`` is the model brand (e.g. ``elevenlabs``, ``hexgrad``,

        ``canopylabs``, ``cartesia``) — the value callers filter the catalog by.

        ``provider`` is the gateway provider serving it (``elevenlabs`` /

        ``together`` / ``deepinfra``). The same voice may appear under more than
        one

        provider (e.g. Kokoro on both Together and DeepInfra).
      title: VoiceInfo
    VoicesResponse:
      type: object
      properties:
        voices:
          type: array
          items:
            $ref: '#/components/schemas/VoiceInfo'
        count:
          type: integer
          default: 0
        truncated:
          type: boolean
          default: false
      description: >-
        Unified voice catalog spanning every TTS provider, optionally
        brand-filtered.
      title: VoicesResponse
    ValidationErrorLocItems:
      oneOf:
        - type: string
        - type: integer
      title: ValidationErrorLocItems
    ValidationErrorCtx:
      type: object
      properties: {}
      title: ValidationErrorCtx
    ValidationError:
      type: object
      properties:
        loc:
          type: array
          items:
            $ref: '#/components/schemas/ValidationErrorLocItems'
        msg:
          type: string
        type:
          type: string
        input:
          description: Any type
        ctx:
          $ref: '#/components/schemas/ValidationErrorCtx'
      required:
        - loc
        - msg
        - type
      title: ValidationError
    HTTPValidationError:
      type: object
      properties:
        detail:
          type: array
          items:
            $ref: '#/components/schemas/ValidationError'
      title: HTTPValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

```

## Examples



**Request**

```json
{}
```

**Response**

```json
{
  "voices": [
    {
      "voice_id": "21m00Tcm4TlvDq8ikWAM",
      "name": "Rachel",
      "brand": "elevenlabs",
      "provider": "elevenlabs",
      "model": "eleven_monolingual_v1",
      "language": "en-US",
      "gender": "female",
      "preview_url": "https://api.elevenlabs.io/voices/21m00Tcm4TlvDq8ikWAM/preview",
      "category": "premade"
    }
  ],
  "count": 1,
  "truncated": false
}
```

**SDK Code**

```python Example response
import requests

url = "https://api.meshapi.ai/v1/audio/voices"

payload = {}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

response = requests.get(url, json=payload, headers=headers)

print(response.json())
```

```javascript Example response
const url = 'https://api.meshapi.ai/v1/audio/voices';
const options = {
  method: 'GET',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go Example response
package main

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

func main() {

	url := "https://api.meshapi.ai/v1/audio/voices"

	payload := strings.NewReader("{}")

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

	req.Header.Add("Authorization", "Bearer <token>")
	req.Header.Add("Content-Type", "application/json")

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

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

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

}
```

```ruby Example response
require 'uri'
require 'net/http'

url = URI("https://api.meshapi.ai/v1/audio/voices")

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

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{}"

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

```java Example response
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://api.meshapi.ai/v1/audio/voices")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{}")
  .asString();
```

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

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api.meshapi.ai/v1/audio/voices', [
  'body' => '{}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

```csharp Example response
using RestSharp;

var client = new RestClient("https://api.meshapi.ai/v1/audio/voices");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift Example response
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

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

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()
```