Publish time
2026/5/20Model Series
千问Input type
Output type
Context Window
991,000Max Output Length
64,000Input Price
¥12 / 1M tokensOutput Price
¥36 / 1M tokensQwen3.7系列中规模最大、综合能力最强的Max模型,当前开放纯文本模型能力供体验。Qwen3.7是面向智能体时代的新一代旗舰模型,核心优势在于智能体能力的广度与深度:在编程、办公与生产力、长周期自主执行方面均能出色胜任各项任务。
Zhinao API routes requests to the best-fit provider and automatically fails over to the one with highest availability.
TTFT
7.60s
Throughput
66tps
Uptime
100.00%
Provider Model
alibaba/qwen/qwen3.7-max
Supported Parameters
Recent Uptime
Reasoning
Toggleable
Supported Response Formats
Request Log Collection
ZDR Supported
Distillable
Yes
Total Context
991,000
Max Output
64,000
Input Price
¥12 / 1M tokens
Output Price
¥36 / 1M tokens
Compare different providers across Zhinao API
66.31 tok/s
7.83 s
Uptime for qwen/qwen3.7-max across all providers
Zhinao API normalizes requests and responses across providers for you
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.360.cn/v1",
apiKey: process.env.ZHINAO_API_KEY,
});
const response = await client.chat.completions.create({
model: "qwen/qwen3.7-max",
messages: [
{ role: "user", content: "Hello, how are you?" }
],
temperature: 0.7,
max_tokens: 1000,
});
console.log(response.choices[0].message.content);