Publish time
2026/4/20Model Series
KimiInput type
Output type
Context Window
262,144Max Output Length
262,144Input Price
¥6.5 / 1M tokensOutput Price
¥27 / 1M tokensKimi K2.6 是 Kimi 最新最智能的模型,Kimi K2.6 的通用 Agent、代码、视觉理解等综合能力得到全面提升,其中在博士级难度的完整版人类最后的考试(Humanity’s Last Exam)、在考察模型真实软件工程能力的 SWE-Bench Pro、评估 Agent 深度检索能力的 DeepSearchQA 等基准测试中均取得行业领先的成绩,同时支持文本、图片与视频输入,思考与非思考模式,对话与 Agent 任务。
Zhinao API routes requests to the best-fit provider and automatically fails over to the one with highest availability.
TTFT
18.24s
Throughput
36.23tps
Uptime
89.00%
Provider Model
microsoft/moonshotai/kimi-k2.6
Supported Parameters
Recent Uptime
Reasoning
Toggleable
Supported Response Formats
Request Log Collection
ZDR Supported
Distillable
Yes
Total Context
262,144
Max Output
262,144
Input Price
¥6.5 / 1M tokens
Output Price
¥27 / 1M tokens
TTFT
6.11s
Throughput
23.76tps
Uptime
17.00%
Provider Model
moonshot/moonshotai/kimi-k2.6
Supported Parameters
Recent Uptime
Reasoning
Toggleable
Supported Response Formats
Request Log Collection
ZDR Supported
Distillable
Yes
Total Context
262,144
Max Output
262,144
Input Price
¥6.5 / 1M tokens
Output Price
¥27 / 1M tokens
Compare different providers across Zhinao API
30.00 tok/s
14.32 s
Uptime for moonshotai/kimi-k2.6 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: "moonshotai/kimi-k2.6",
messages: [
{ role: "user", content: "Hello, how are you?" }
],
temperature: 0.7,
max_tokens: 1000,
});
console.log(response.choices[0].message.content);