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.xairouter.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.xairouter.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!"}
]
}'