Publish time
2026/5/6Model Series
360智脑Input type
Output type
Context Window
32,000Max Output Length
8,192Input Price
¥1 / 1M tokensOutput Price
¥2 / 1M tokensZhinao API routes requests to the best-fit provider and automatically fails over to the one with highest availability.
TTFT
No data
Throughput
59.65tps
Uptime
100.00%
Provider Model
360zhinao-turbo
Supported Parameters
Recent Uptime
Reasoning
-
Supported Response Formats
Request Log Collection
-
Distillable
-
Total Context
32,000
Max Output
8,192
Input Price
¥1 / 1M tokens
Output Price
¥2 / 1M tokens
Compare different providers across Zhinao API
18.70 tok/s
No data
Uptime for 360zhinao-turbo-doubao-seed-1-8-thinking-minimal 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: "360zhinao-turbo-doubao-seed-1-8-thinking-minimal",
messages: [
{ role: "user", content: "Hello, how are you?" }
],
temperature: 0.7,
max_tokens: 1000,
});
console.log(response.choices[0].message.content);