Models / Qwen3 32B
Qwen3 32B
Qwen Tier 1Apache-2.0Strong dense all-rounder with 131K context. Good balance of capability and cost for general-purpose use.
qwen/qwen3-32bContext Window
131K
Max Output
16K
Providers
2
Released
2025-04
Capabilities
chatcodereasoningthinkingtoolsstreamingjson_mode
Pricing by Provider
| Provider | Input $/1M | Output $/1M | Latency p50 | Latency p95 | Status |
|---|---|---|---|---|---|
| alibaba | $0.16 | $0.64 | 350ms | 900ms | |
| together | $0.18 | $0.72 | 400ms | 1000ms |
Quick Start
Python
import magicrouter
mr = magicrouter.Client(
provider_keys={"alibaba": "your-api-key"}
)
response = mr.chat(
"qwen/qwen3-32b",
"Your prompt here"
)
print(response.choices[0].message.content)TypeScript
import { MagicRouter } from "magicrouter";
const mr = new MagicRouter({
providerKeys: { alibaba: "your-api-key" }
});
const response = await mr.chat({
model: "qwen/qwen3-32b",
messages: [{ role: "user", content: "Your prompt here" }]
});
console.log(response.choices[0].message.content);cURL
curl https://dashscope-intl.aliyuncs.com/compatible-mode/v1/chat/completions \
-H "Authorization: Bearer your-api-key" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3-32b",
"messages": [{"role": "user", "content": "Your prompt here"}]
}'