Publish time
2026/4/20Model Series
千问Input type
Output type
Context Window
1,000,000Max Output Length
64,000Input Price
¥0.8 / 1M tokensOutput Price
¥4.8 / 1M tokensQwen3.5原生视觉语言系列Plus模型,相较于2月15日快照,本模型在Agentic coding能力上大幅提升;推理速度显著提升;知识、推理与长上下文能力保持较高水准,满足复杂Agent任务的需求,适合应用于编码智能体、生产工作流和高吞吐场景。该版本为2026年4月20日快照。
Zhinao API routes requests to the best-fit provider and automatically fails over to the one with highest availability.
TTFT
4.72s
Throughput
41.56tps
Uptime
100.00%
Provider Model
alibaba/qwen3.5-plus-2026-04-20
Supported Parameters
Recent Uptime
Reasoning
Toggleable
Supported Response Formats
Request Log Collection
ZDR Supported
Distillable
Yes
Total Context
1,000,000
Max Output
64,000
Input Price
¥0.8 / 1M tokens
Output Price
¥4.8 / 1M tokens
Compare different providers across Zhinao API
40.67 tok/s
2.66 s
Uptime for qwen/qwen3.5-plus-2026-04-20 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.5-plus-2026-04-20",
messages: [
{ role: "user", content: "Hello, how are you?" }
],
temperature: 0.7,
max_tokens: 1000,
});
console.log(response.choices[0].message.content);