Publish time
2026/2/15Model Series
豆包seedInput type
Output type
Context Window
256,000Max Output Length
128,000Input Price
¥3.2 / 1M tokensOutput Price
¥16 / 1M tokensDoubao-Seed-Code 针对智能体编程任务进行了深度优化,在多个权威基准测试(包括 Terminal Bench、SWE-Bench-Verified-Openhands 和 Multi-SWE-Bench-Flash-Openhands)中展现出卓越的性能,超越了国内同类模型,并支持高达 256k token 的上下文窗口。
Zhinao API routes requests to the best-fit provider and automatically fails over to the one with highest availability.
TTFT
0.06s
Throughput
35.05tps
Uptime
100.00%
Provider Model
volcengine/doubao-seed-2-0-code
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
¥3.2 / 1M tokens
Output Price
¥16 / 1M tokens
Compare different providers across Zhinao API
19.32 tok/s
3.03 s
Uptime for bytedance/doubao-seed-2-0-code 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-code",
messages: [
{ role: "user", content: "Hello, how are you?" }
],
temperature: 0.7,
max_tokens: 1000,
});
console.log(response.choices[0].message.content);