Alibaba Cloud
Qwen3-Max
Alibaba Qwen 3.0 flagship model with strong Chinese capabilities and high cost-effectiveness
Context Length128K tokens
Model TypeLarge Language Model (LLM)
Language OptimizationChinese-English bilingual
Pricing & Specs
💰 Pricing
Input$2 / M tokens
Output$6 / M tokens
⚙️ Specs
Context Length128K tokens
Model TypeLarge Language Model (LLM)
Language OptimizationChinese-English bilingual
Training Cutoff DateEarly 2025
API Examples
Python
from openai import OpenAI
client = OpenAI(
base_url="https://api.xairouter.com/v1",
api_key="your-api-key"
)
response = client.chat.completions.create(
model="qwen3-max",
messages=[
{"role": "user", "content": "Hello!"}
]
)
print(response.choices[0].message.content)cURL
curl https://api.xairouter.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "qwen3-max",
"messages": [
{"role": "user", "content": "Hello!"}
]
}'