一站式 AI 模型聚合调用平台

OpenAI 兼容接口,多模型智能路由,统一终端定价,智优分单级推广,实时计费透明可视

立即开始 → 查看文档

为什么选择 智优 MaaS

一站式 AI 模型聚合调用平台,开箱即用,弹性扩展

OpenAI 兼容

完全兼容 OpenAI API 格式,一行代码切换,无需改动业务逻辑

多模型聚合

聚合 DeepSeek、通义千问、GPT 等主流模型,智能路由,自动故障切换

统一终端价

全平台统一对外报价,透明稳定;代理享单级智优分返佣,无多级加价

实时计费

Token 级精确计费,透明可视的调用日志,余额随时可查

模型定价

主流模型价格一览,按 Token 实时计费

模型说明输入 (每百万 Token)输出 (每百万 Token)
deepseek-v4-flash-0731 deepseek-v4-flash-0731 ¥ 1.43 ¥ 4.28
deepseek-v4-pro - ¥ 4.28 ¥ 8.55
glm-5.2 - ¥ 7.60 ¥ 26.60
kimi-k2.7-code - ¥ 6.17 ¥ 25.65
kimi-k3 kimi-k3 ¥ 19.00 ¥ 95.00
MiniMax-M2.5 - ¥ 2.00 ¥ 7.98
qwen-flash qwen-flash ¥ 1.90 ¥ 5.70
qwen3.7-flash - ¥ 1.14 ¥ 4.56
qwen3.7-max - ¥ 5.70 ¥ 17.10
qwen3.7-plus qwen3.7-plus(≤256K) ¥ 1.52 ¥ 6.08

快速接入

兼容 OpenAI API 格式,几行代码即可完成接入

# 对话补全 (非流式)
curl -X POST https://your-domain.com/v1/chat/completions \
  -H "Authorization: Bearer sk-your-token" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen-plus",
    "messages": [{"role": "user", "content": "你好"}]
  }'

# 流式对话
curl -X POST https://your-domain.com/v1/chat/completions \
  -H "Authorization: Bearer sk-your-token" \
  -H "Content-Type: application/json" \
  -d '{"model": "deepseek-chat", "stream": true, "messages": [{"role": "user", "content": "写首诗"}]}'

# 获取可用模型列表
curl https://your-domain.com/v1/models \
  -H "Authorization: Bearer sk-your-token"