Qwen3 TTS Flash
unofficialtts
Qwen3 TTS Flash specifications
| Context window | — |
|---|---|
| Max output tokens | — |
| Release date | — |
| Input | Text |
| Output | Audio |
Qwen3 TTS Flash pricing in rubles
You pay for what you use, per token and per unit. The final request cost is returned in the API response.
| Type | Price |
|---|---|
| Speech synthesis | 0,0018 ₽ per character |
Prices are in rubles and may change with exchange rates.
What Qwen3 TTS Flash can do
- Streaming responses
- Voice cloning
Qwen3 TTS Flash API: connection and code examples
The service exposes a single OpenAI-compatible API. Set our base_url and the key from your dashboard.
OpenAI Python SDK
from openai import OpenAI
client = OpenAI(api_key="YOUR_API_KEY", base_url="https://api.neuralbridge.ru/v1")
audio = client.audio.speech.create(model="qwen/qwen3-tts-flash-01402", voice="default", input="Привет!")
audio.write_to_file("speech.mp3")cURL
curl https://api.neuralbridge.ru/v1/audio/speech \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model": "qwen/qwen3-tts-flash-01402", "input": "Привет!"}' \
--output speech.mp3API endpoints
POST /v1/audio/speechprimary | Audio — speech Síntesis de voz: texto como entrada, archivo de audio como salida. |
Supported request parameters
| Parameter | Default | Allowed values | Description |
|---|---|---|---|
voice | Cherry | Aiden, Alek, Andre, Arthur, Bella, Bellona, Bodega, Bunny, Chelsie, Cherry, Dolce, Dylan, Ebona, Eldric Sage, Elias, Emilien, Eric, Ethan, Jada, Jennifer, Kai, Katerina, Kiki, Lenn, Li, Maia, Marcus, Mia, Mochi, Momo, Moon, Neil, Nini, Nofish, Ono Anna, Peter, Pip, Radio Gol, Rocky, Roy, Ryan, Seren, Serena, Sohee, Sonrisa, Stella, Sunny, Vincent, Vivian | Voz de síntesis. Las voces disponibles se enumeran en las características del modelo. |
language | — | — | Idioma del material: prompt del modelo indicando en qué idioma se habla o está escrito el texto. Normalmente acelera y precisa el procesamiento. |
speed | 1 | — | Velocidad del habla relativa a la normal: menos de uno — más lenta, más de uno — más rápida. |
response_format | mp3 | — | Formato de respuesta: texto plano o JSON estricto según el esquema especificado. |