Enjoy 50% OFF Vidu Q3 & Q3 Pro models • Only on WaveSpeedAI | May 20 – Jun 2

Qwen3 TTS Voice Design

wavespeed-ai /

Qwen3 TTS Voice Design: Generate speech with custom voice characteristics described in natural language. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing.

text-to-audio
Input

Idle

$0.005per run·~200 / $1

ExamplesView all

Related Models

README

Qwen3-TTS Voice Design

Qwen3-TTS Voice Design is a next-generation text-to-speech model that lets you design custom voices using natural language descriptions. Instead of selecting from preset voices, simply describe the voice you want — age, gender, tone, speaking style — and the model generates speech that matches your description.

Why Choose This?

  • Natural language voice control Describe your ideal voice in plain text (e.g., "a warm, friendly female voice with a slight British accent") and the model creates it.

  • Unlimited voice variety No preset limits — create any voice character you can describe, from professional narrators to unique personas.

  • Multilingual support Generate speech in 10 languages: Chinese, English, German, Italian, Portuguese, Spanish, Japanese, Korean, French, and Russian.

  • Auto language detection Set language to "auto" and the model intelligently detects the language from your text.

Parameters

ParameterRequiredDescription
textYesThe text to convert to speech
voice_descriptionYesNatural language description of the desired voice
languageNoauto, Chinese, English, German, Italian, Portuguese, Spanish, Japanese, Korean, French, Russian (default: auto)

Voice Description Examples

  • "A young female voice, energetic and cheerful, speaking quickly with enthusiasm"
  • "An elderly male narrator with a deep, calm, authoritative tone"
  • "A professional newsreader voice, neutral and clear, with perfect pronunciation"
  • "A warm, friendly customer service representative, patient and helpful"
  • "A dramatic storyteller voice with expressive intonation and theatrical pauses"

How to Use

  1. Enter your text — write or paste the content you want to convert to speech.
  2. Describe your voice — use natural language to describe the voice characteristics you want (age, gender, tone, style, accent, etc.).
  3. Select language — choose the target language or use "auto" for automatic detection.
  4. Run — submit and download your audio file.

Pricing

Text LengthCost
Under 100 chars$0.005
100+ chars$0.005 per 100 characters

Billing Rules

  • Minimum charge: $0.005 (for texts under 100 characters)
  • For longer texts: $0.005 × (character count / 100)

Best Use Cases

  • Character Voices — Create unique voices for games, animations, or audiobooks without voice actors.
  • Prototyping — Quickly test different voice styles before committing to production.
  • Localization — Generate consistent voice styles across multiple languages.
  • Accessibility — Convert text to speech with customized, natural-sounding voices.
  • Content Creation — Produce voiceovers for videos, podcasts, and presentations.

Pro Tips

  • Be specific in your voice description — include age, gender, emotional tone, speaking pace, and any accent preferences.
  • Use descriptive adjectives: "warm", "crisp", "authoritative", "playful", "soothing", etc.
  • Mention the context if relevant (e.g., "suitable for a children's audiobook" or "professional corporate presentation").
  • Test with short text first to fine-tune your voice description before generating longer content.
  • Combine multiple attributes for more nuanced voices (e.g., "middle-aged, confident but approachable").

Notes

  • Voice descriptions work best when they are clear and detailed.
  • The same voice description will produce consistent results across multiple generations.
  • For best quality, match the language parameter to your text content.
Accessibility:This website uses AI models provided by third parties.

Qwen3 Tts Voice Design API — Quick start

Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/wavespeed-ai/qwen3-tts/voice-design with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Qwen3 Tts Voice Design below.

HTTP example
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/qwen3-tts/voice-design" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY" \
  -d '{
    "language": "auto"
}'

# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY"

# When status is "completed", read the output from data.outputs[0].
Node.js example
// npm install wavespeed
const WaveSpeed = require('wavespeed');

const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env

const result = await client.run("wavespeed-ai/qwen3-tts/voice-design", {
        "language": "auto"
});

console.log(result.outputs[0]); // → URL of the generated output
Python example
# pip install wavespeed
import wavespeed

output = wavespeed.run(
    "wavespeed-ai/qwen3-tts/voice-design",
    {
    "language": "auto"
}
)

print(output["outputs"][0])  # → URL of the generated output

Qwen3 Tts Voice Design API — Frequently asked questions

What is the Qwen3 Tts Voice Design API?

Qwen3 Tts Voice Design is a WaveSpeedAI model for audio generation, exposed as a REST API on WaveSpeedAI. Qwen3 TTS Voice Design: Generate speech with custom voice characteristics described in natural language. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing. You can call it programmatically or try it from the playground above.

How do I call the Qwen3 Tts Voice Design API?

POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/wavespeed-ai/qwen3-tts-voice-design.

How much does Qwen3 Tts Voice Design cost per run?

Qwen3 Tts Voice Design starts at $0.005 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.

What inputs does Qwen3 Tts Voice Design accept?

Key inputs: `language`, `text`, `voice_description`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/wavespeed-ai/qwen3-tts-voice-design.

How long does Qwen3 Tts Voice Design take to generate?

Average end-to-end generation time on WaveSpeedAI is around 23 seconds per request — measured across recent runs. Queue time scales with global demand; live status is visible in the prediction record.

Can I use Qwen3 Tts Voice Design outputs commercially?

Commercial usage rights depend on the model's license, set by its provider (WaveSpeedAI). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.