Publish time
2026/2/26Model Series
豆包seedInput type
Output type
Context Window
256,000Max Output Length
128,000Input Price
¥0.2 / 1M tokensOutput Price
¥2 / 1M tokensSeed-2.0-mini 面向对延迟敏感、高并发及成本敏感的场景,强调快速响应与灵活的推理部署。支持 256k 上下文窗口及四种推理强度模式(极简/低/中/高),具备多模态理解能力,并针对那些将成本与速度置于首位的轻量级任务进行了专门优化。
Zhinao API routes requests to the best-fit provider and automatically fails over to the one with highest availability.
TTFT
0.51s
Throughput
63.81tps
Uptime
100.00%
Provider Model
volcengine/doubao-seed-2-0-mini
Supported Parameters
Recent Uptime
Reasoning
Toggleable
Supported Response Formats
Request Log Collection
ZDR Supported
Distillable
Yes
Total Context
256,000
Max Output
128,000
Input Price
¥0.2 / 1M tokens
Output Price
¥2 / 1M tokens
Compare different providers across Zhinao API
90.87 tok/s
0.69 s
Uptime for bytedance/doubao-seed-2-0-mini 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: "bytedance/doubao-seed-2-0-mini",
messages: [
{ role: "user", content: "Hello, how are you?" }
],
temperature: 0.7,
max_tokens: 1000,
});
console.log(response.choices[0].message.content);