Alibaba Cloud
Qwen3.6-Plus
Alibaba Cloud Qwen3.6-Plus general-purpose LLM with 256K tiered pricing for text generation and reasoning workloads
Model TypeLarge Language Model (LLM)
Pricing (<=256K)Input ¥2 / M tokens; Output ¥12 / M tokens
Pricing (>256K)Input ¥8 / M tokens; Output ¥48 / M tokens
Pricing & Specs
💰 Pricing
Input¥2 / M tokens
Output¥12 / M tokens
⚙️ Specs
Model TypeLarge Language Model (LLM)
Pricing (<=256K)Input ¥2 / M tokens; Output ¥12 / M tokens
Pricing (>256K)Input ¥8 / M tokens; Output ¥48 / M tokens
Tier ThresholdHigher-tier pricing applies when input exceeds 256K tokens
API Examples
Python
from openai import OpenAI
client = OpenAI(
base_url="https://api.zairouter.com/v1",
api_key="your-api-key"
)
response = client.chat.completions.create(
model="qwen3.6-plus",
messages=[
{"role": "user", "content": "Hello!"}
]
)
print(response.choices[0].message.content)cURL
curl https://api.zairouter.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "qwen3.6-plus",
"messages": [
{"role": "user", "content": "Hello!"}
]
}'