Back to modelsBuy Plan
Alibaba
通义 Qwen3.7 Max
Qwen3.7-Max 是通义千问最新一代旗舰大模型,面向 Agent 场景全新设计,在长链路推理、跨文件代码理解与复杂工程任务执行等维度均有显著提升;支持百万 Token 上下文,默认开启思考模式,在编程、办公与生产力、长周期自主执行方面均能出色胜任各项任务。
Quick Stats
Context
1000K
Max Output
66K
Provider
Alibaba
Specs
1
Modalities
in textout text
Specs & List Price (per 1M tokens)
Quality
Input $1.791045Output $5.373134
Recommended Plan
通义 Qwen3.7 Max Starter Plan
Pay-as-you-go after top-up; $1 free credit for new users.
API Endpoint
Model ID
qwen/qwen3.7-maxcURL
curl https://intertoken.ai/v1/chat/completions \
-H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen/qwen3.7-max",
"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.7-max",
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.