Qwen3 72B Instructalibaba/qwen3-72b-instruct
Alibaba's Qwen3 72B Instruct is the latest open-weight flagship in the Qwen family, with strong multilingual (especially Chinese) and reasoning capabilities. Apache 2.0 licensed; available on DashScope (official) and major open-weight aggregators.
Pricing across providers
| Provider | Input /1M | Output /1M | Blended /1M | Latency p50 | Format | Freshness | Action |
|---|
2 hostings hidden — prices older than 60 days are pending re-verification.
Affiliate disclosure: We may earn a commission from qualified signups. Pricing independence is enforced at the data layer — see our Editorial Independence Policy.
Works with
Point any of these clients at a hosting's base URL — they all speak at least one of this model's endpoint protocols (OPENAI_COMPATIBLE).
Capabilities
- chat
- reasoning
- multilingual
- long_context
- tool_use
Languages: en, zh, ja, ko, ar, es, fr, de
Benchmarks
Code samples
Example using Together.ai — the cheapest hosting for this model as of last verification. Swap base_url and model to use a different provider from the matrix above.
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://api.together.xyz/v1",
)
response = client.chat.completions.create(
model="Qwen/Qwen3-72B-Instruct",
messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)
Technical specs
- Context
- 131K
- Max output
- 8K
- Parameters
- 72B
- Release
- 2025-01-28
- Training cutoff
- 2024-09-01
- License
- Apache 2.0
Similar models
Compare with
- Qwen3 72B Instruct vs Llama 3.3 70B InstructComparison planned — not yet published
Frequently asked
How much does Qwen3 72B Instruct cost?+−
How do I access Qwen3 72B Instruct from outside China?+−
Is Qwen3 72B Instruct open-source? Can I fine-tune it?+−
Is Qwen3 72B Instruct OpenAI-compatible?+−
openai SDK client at the Provider's base_url and use the Provider's model name. See the Code Samples above for a copy-pasteable example.