> ## Documentation Index
> Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Qwen3TTS

> Telnyx Qwen3TTS provides high-quality voice cloning with native support for 11 languages, ideal for multilingual voice agents on the Telnyx TTS API.

**Voice format:** `Telnyx.Qwen3TTS.<clone_name>`

Voice cloning model. 11 languages: en, zh, fr, de, it, ja, ko, pt, ru, es, ar.

The `voice_id` is the name of a clone you created in the [Voice Design Lab](https://portal.telnyx.com/#/app/ai/voice-design-lab). Clones are scoped to your organization.

## Voice Samples

| Voice                     | Gender | Sample                                                              |
| ------------------------- | ------ | ------------------------------------------------------------------- |
| `Telnyx.Qwen3TTS.Delta`   | Female | <audio controls src="/audio/tts-samples/telnyx-qwen-delta.mp3" />   |
| `Telnyx.Qwen3TTS.Whiskey` | Male   | <audio controls src="/audio/tts-samples/telnyx-qwen-whiskey.mp3" /> |

***

## WebSocket

### Query Parameters

```
wss://api.telnyx.com/v2/text-to-speech/speech?voice=Telnyx.Qwen3TTS.Delta
```

| Parameter      | Type    | Default | Description        |
| -------------- | ------- | ------- | ------------------ |
| `audio_format` | string  | `mp3`   | `mp3`, `linear16`. |
| `sample_rate`  | integer | `24000` | 24000.             |

### Voice Settings

Send in the init frame (`{"text": " "}`):

| Field            | Type    | Default | Description                                                                                                                                                |
| ---------------- | ------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `language_boost` | string  | —       | Target language hint: `Auto`, `English`, `Chinese`, `French`, `German`, `Italian`, `Japanese`, `Korean`, `Portuguese`, `Russian`, `Spanish`, or ISO codes. |
| `force_xvector`  | boolean | `false` | Force x-vector voice embedding.                                                                                                                            |

```json theme={null}
{
  "text": " ",
  "voice_settings": {
    "language_boost": "English"
  }
}
```

## REST API

### Fields

| Field            | Type    | Default         | Description                                      |
| ---------------- | ------- | --------------- | ------------------------------------------------ |
| `language_boost` | string  | —               | Target language hint.                            |
| `force_xvector`  | boolean | `false`         | Force x-vector voice embedding.                  |
| `output_type`    | string  | `binary_output` | `binary_output`, `base64_output`, or `audio_id`. |

### Response

Default (`binary_output`): chunked PCM audio bytes. Always 24kHz signed 16-bit LE mono.

With `output_type: "base64_output"`: JSON with base64-encoded PCM.

With `output_type: "audio_id"`: JSON with an `audio_url` for deferred retrieval.
