Back to modelsBuy Plan
Alibaba
通义 Qwen3.6 Flash
Qwen3.6 原生视觉语言 Flash 系列模型,在整体性能上较 Qwen3.5-Flash 显著提升。重点增强了智能体编程能力(在多项代码智能体基准上大幅超越前代)、数学推理和代码推理能力;在视觉能力方面,空间智能显著增强,其中物体定位和目标检测表现尤为突出。
Quick Stats
Context
1000K
Max Output
66K
Provider
Alibaba
Specs
1
Modalities
in textin imagein videoout text
Specs & List Price (per 1M tokens)
Quality
Input $0.179104Output $1.074627
Recommended Plan
通义 Qwen3.6 Flash Starter Plan
Pay-as-you-go after top-up; $1 free credit for new users.
API Endpoint
Model ID
qwen/qwen3.6-flashcURL
curl https://intertoken.ai/v1/chat/completions \
-H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen/qwen3.6-flash",
"messages": [{"role": "user", "content": "Hello!"}]
}'Python
from openai import OpenAI
client = OpenAI(
base_url="https://intertoken.ai/v1",
api_key="$TOKENPORTAL_API_KEY",
)
resp = client.chat.completions.create(
model="qwen/qwen3.6-flash",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)Start using this model
Sign up free, get an API key, and make your first call in 30 seconds.