SmartBrain API
SmartBrain API
  • Model Hub
  • API Docs
SmartBrain API

Enterprise AI as Simple as Utilities

More Links
Model HubConsoleAPI KeysUsage QueryDocs
© 2026 SmartBrain API. All rights reserved.|ICP License|Privacy Policy|Terms

360zhinao-turbo-qwen-plus

Online Chat

Publish time

-

Model Series

Input type

Output type

Context Window

32,000

Max Output Length

8,192

Input Price

¥1 / 1M tokens

Output Price

¥2 / 1M tokens

Providers for 360zhinao-turbo-qwen-plus

Zhinao API routes requests to the best-fit provider and automatically fails over to the one with highest availability.

3
360智脑
国内

TTFT

No data

Throughput

65.36tps

Uptime

100.00%

Provider Model

360zhinao-turbo

Supported Parameters

Recent Uptime

4月5日 12 AM100.00%
4月2日 8 PM: 100.00%4月2日 9 PM: 100.00%4月2日 9 PM: 99.77%4月2日 10 PM: 100.00%4月2日 10 PM: 100.00%4月2日 11 PM: 99.89%4月2日 11 PM: 100.00%4月3日 12 AM: 100.00%4月3日 8 AM: 100.00%4月3日 9 AM: 100.00%4月3日 9 AM: 100.00%4月3日 10 AM: 100.00%4月3日 10 AM: 100.00%4月3日 11 AM: 100.00%4月3日 11 AM: 99.99%4月3日 12 PM: 99.99%4月3日 12 PM: 100.00%4月3日 1 PM: 100.00%4月3日 1 PM: 100.00%4月3日 2 PM: 100.00%4月3日 2 PM: 99.90%4月3日 3 PM: 99.92%4月3日 3 PM: 100.00%4月3日 4 PM: 100.00%4月3日 4 PM: 100.00%4月3日 5 PM: 100.00%4月3日 5 PM: 100.00%4月3日 6 PM: 100.00%4月3日 6 PM: 99.97%4月3日 7 PM: 100.00%4月3日 7 PM: 100.00%4月3日 8 PM: 100.00%4月3日 8 PM: 100.00%4月3日 9 PM: 100.00%4月3日 9 PM: 100.00%4月3日 10 PM: 100.00%4月3日 10 PM: 100.00%4月3日 11 PM: 100.00%4月3日 11 PM: 100.00%4月4日 12 AM: 100.00%4月4日 8 AM: 100.00%4月4日 8 AM: 99.96%4月4日 9 AM: 100.00%4月4日 9 AM: 99.97%4月4日 10 AM: 100.00%4月4日 11 AM: 100.00%4月4日 11 AM: 99.97%4月4日 12 PM: 100.00%4月4日 12 PM: 100.00%4月4日 12 PM: 100.00%4月4日 1 PM: 100.00%4月4日 2 PM: 100.00%4月4日 2 PM: 100.00%4月4日 3 PM: 100.00%4月4日 3 PM: 100.00%4月4日 4 PM: 100.00%4月4日 4 PM: 100.00%4月4日 5 PM: 100.00%4月4日 5 PM: 100.00%4月4日 6 PM: 100.00%4月4日 6 PM: 100.00%4月4日 6 PM: 99.96%4月4日 7 PM: 100.00%4月4日 8 PM: 100.00%4月4日 8 PM: 100.00%4月4日 9 PM: 100.00%4月4日 9 PM: 100.00%4月4日 10 PM: 100.00%4月4日 10 PM: 100.00%4月4日 11 PM: 100.00%4月4日 11 PM: 100.00%4月5日 12 AM: 100.00%

Reasoning

-

Supported Response Formats

OpenAI Chat Completions
OpenAI Responses
Anthropic Messages
Google VertexAI

Request Log Collection

-

Distillable

-

Total Context

32,000

Max Output

8,192

Input Price

¥1 / 1M tokens

Output Price

¥2 / 1M tokens

Performance for 360zhinao-turbo-qwen-plus

Compare different providers across Zhinao API

Throughput

39.41 tok/s

TTFT

No data

Uptime for 360zhinao-turbo-qwen-plus

Uptime for 360zhinao-turbo-qwen-plus across all providers

Sample code and API for 360zhinao-turbo-qwen-plus

Get API Key

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-qwen-plus",
  messages: [
    { role: "user", content: "Hello, how are you?" }
  ],
  temperature: 0.7,
  max_tokens: 1000,
});

console.log(response.choices[0].message.content);