Invite-only · Official upstream channels only

One API, many models

DUKOU AI is a unified LLM API platform for developers. One API key and one OpenAI-compatible endpoint to call leading models from multiple providers, with reliable routing, usage analytics, and unified billing.

https://api.dukou.ai/v1
python
from openai import OpenAI

client = OpenAI(
    base_url="https://api.dukou.ai/v1",
    api_key="sk-dukou-********",
)

resp = client.chat.completions.create(
    model="claude-sonnet-5",
    messages=[{"role": "user", "content": "Hello, DUKOU"}],
    stream=True,
)
for chunk in resp:
    print(chunk.choices[0].delta.content or "", end="")
curl
curl https://api.dukou.ai/v1/chat/completions \
  -H "Authorization: Bearer sk-dukou-********" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5.2",
    "messages": [{"role": "user", "content": "Hello"}]
  }'

Built for developers and AI apps

DUKOU AI sits between your application and upstream model providers, giving you a unified, reliable model access layer.

Unified API
An OpenAI-compatible API: keep your existing SDKs and just change the base URL and API key.
Multi-model access
Call models from OpenAI, Claude, Gemini, DeepSeek and more with a single key — no per-vendor auth or protocol work.
Reliable routing & failover
Upstream channels are selected by priority, weight, and health; on connection errors before any output, a backup channel is tried automatically.
SSE streaming
Full streaming support: model output is forwarded to your client as it is generated, with no wait for the complete response.
Usage & cost management
Token usage, cost, and latency are recorded per request; check balance, billing, and daily/per-model stats in the console anytime.
Security & privacy
Request and response content is not stored by default — only billing metadata. API keys are stored as irreversible hashes.

Get started in three steps

01

Sign up with an invite

Register with an invite link and verify your email.

02

Create an API key

Create an API key starting with sk-dukou- in the console and top up your balance.

03

Switch your base URL

Point your app's base URL at https://api.dukou.ai/v1 and start calling right away.

Every request, delivered

Have an invite code? Sign up, create a key, and make your first call in minutes.

Sign up now