⚡ OpenAI 兼容 API 中转

一个 Key,畅享顶级 AI 模型

通过标准 OpenAI API 格式,轻松调用 Claude 4.5、GPT-5.2、DeepSeek-V3.2、Kimi K2 等多款强大模型。

🔧 管理面板 查看可用模型 ↓

可用模型

所有模型均通过 OpenAI 兼容格式调用

🟣

Claude Sonnet 4.5

CLAUDE_4_5

Anthropic 旗舰模型,卓越的推理与代码能力

🟢

GPT-5.2

GPT_5_2

OpenAI 最新一代模型,全面升级的综合能力

🔵

DeepSeek-V3.2

DEEPSEEK_V3_2

深度求索新一代开源大模型,性能卓越

🟡

Kimi K2-0905

KIMI_K2

月之暗面长上下文模型,20万字窗口

🔴

KAT-Coder-Pro V1

kat_coder

快手自研代码大模型,编程利器

🔷

Kwai-KAT-V1

kwaipilot_40b

快手 KAT 系列通用大模型

即刻开始

兼容所有 OpenAI SDK,复制即用

Python
from openai import OpenAI

client = OpenAI(
    base_url="https://dns.openclaw888.cn/v1",
    api_key="sk-cf-你的key",
)

response = client.chat.completions.create(
    model="CLAUDE_4_5",
    messages=[{"role": "user", "content": "你好"}],
    stream=True,
)
for chunk in response:
    print(chunk.choices[0].delta.content, end="")
cURL
curl https://dns.openclaw888.cn/v1/chat/completions \
  -H "Authorization: Bearer sk-cf-你的key" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "CLAUDE_4_5",
    "messages": [{"role":"user","content":"你好"}],
    "stream": true
  }'