Qwen3 (also known as Tongyi Qianwen) is Alibaba Cloud's family of large language models, offering some of the most diverse model options in the market — from lightweight Turbo variants to the massive 480B-parameter Coder model and the multimodal VL (Vision-Language) model.
This guide covers the complete Qwen3 API family with pricing, code examples in Python and Node.js, model selection guidance, and comparison with other major Chinese AI models.
| Model | Parameters | Best For |
|---|---|---|
| Qwen3-Turbo | Optimized | Best price-performance ratio, general tasks |
| Qwen3-72B | 72B | High-quality general purpose, strong reasoning |
| Qwen3-Coder-480B | 480B (MoE) | Specialized coding & software engineering |
| Qwen3-VL (Vision) | 8B variant | Image understanding, visual QA, OCR |
| Qwen3-Max | Flagship | Maximum quality, complex reasoning |
| Model | Input (per 1M tokens) | Output (per 1M tokens) |
|---|---|---|
| Qwen3-Turbo | $0.08 | $0.08 |
| Qwen3-72B | $0.14 | $0.14 |
| Qwen3-Coder-480B | $0.82 | $0.82 |
| Qwen3-VL | $0.14 | $0.14 |
| Qwen3-Max | $0.55 | $0.55 |
| DeepSeek V4 Pro (reference) | $0.14 | $0.28 |
| GPT-4o (reference) | $2.50 | $10.00 |
💡 Qwen3-Turbo at just $0.08/M tokens — also compare with ERNIE 4.0 (Baidu) at $0.55/M offers the most cost-effective symmetric pricing among major Chinese AI models — same price for input and output. Perfect for applications with heavy output generation.
from openai import OpenAI
client = OpenAI(
base_url="https://aiwave.live/v1",
api_key="***"
)
# Qwen3-Turbo — best value
response = client.chat.completions.create(
model="qwen3-turbo",
messages=[{"role": "user", "content": "Explain the Qwen3 model family."}]
)
print(response.choices[0].message.content)
response = client.chat.completions.create(
model="qwen3-coder-480b",
messages=[
{"role": "system", "content": "You are an expert software engineer."},
{"role": "user", "content": "Write a Python function to implement a binary search tree with insert, delete, and search operations."}
],
temperature=0.1
)
print(response.choices[0].message.content)
Qwen3-Coder-480B is Alibaba's specialized coding model with 480 billion parameters using a Mixture-of-Experts architecture. It's designed specifically for:
While more expensive than Qwen3-Turbo ($0.82 vs $0.08/M tokens), the Coder variant delivers significantly better results on complex programming tasks — often rivaling specialized coding models like DeepSeek Coder and GPT-4o.
Qwen3-VL adds visual understanding capabilities, allowing the model to process and analyze images alongside text. Use cases include:
import base64
with open("screenshot.png", "rb") as f:
img = base64.b64encode(f.read()).decode()
response = client.chat.completions.create(
model="qwen3-vl",
messages=[
{
"role": "user",
"content": [
{"type": "text", "text": "Describe what you see in this screenshot and identify any UI issues."},
{"type": "image_url", "image_url": f"data:image/png;base64,{img}"}
]
}
]
)
print(response.choices[0].message.content)
| Feature | Qwen3-Turbo | DeepSeek V4 Pro | GLM-5 |
|---|---|---|---|
| Input Price (1M) | $0.08 🏆 | $0.14 | $0.14 |
| Output Price (1M) | $0.08 🏆 | $0.28 | $0.14 |
| Specialized Variants | Coder-480B, VL | Flash, R1 | Flash (Free), 4V |
| Coding | ⭐⭐⭐⭐ (Coder: ⭐⭐⭐⭐⭐) | ⭐⭐⭐⭐⭐ | ⭐⭐⭐⭐ |
| Multilingual | ⭐⭐⭐⭐ | ⭐⭐⭐⭐⭐ | ⭐⭐⭐ (Chinese focus) |
| Vision | ✅ Qwen3-VL | ❌ | ✅ GLM 5 |
🎯 Qwen3-Turbo at $0.08/M offers the most cost-effective pricing among comparable models. Qwen3-Coder-480B is an excellent choice for dedicated coding tasks. Use DeepSeek V4 Pro for general-purpose high-quality output.
| Use Case | Recommended Qwen Model |
|---|---|
| High-volume chatbots | Qwen3-Turbo — most cost-effective at $0.08/M |
| Code generation & review | Qwen3-Coder-480B — specialized for programming |
| Image analysis & OCR | Qwen3-VL — vision-language capabilities |
| General high-quality output | Qwen3-72B — balanced performance and cost |
| Complex reasoning | Qwen3-Max — maximum capability |
One API key for all Qwen3 variants. $0.20 starter credit to start.
Get Your API Key →Qwen3-Turbo from $0.08/M tokens — most cost-effective in class
Related: Qwen3 API guide · pricing
Qwen3: frontier AI at a fraction of the cost. Try free today.
Explore Models →