🔌 OpenAI Compatible API

Access 11 Chinese LLMs through a single OpenAI-compatible endpoint. Change one line of code, save 80-99% on API costs.

Get Free API Key →

Zero Code Changes Required

If you're already using the OpenAI SDK, you're 90% done. Just change the base_url and api_key — everything else works identically.

Python (openai SDK)

from openai import OpenAI

# Just change these 2 lines:
client = OpenAI(
    base_url="https://eaf9553505eeb8f5-115-190-107-107.serveousercontent.com/v1",
    api_key="your-api-key"
)

# Everything else stays the same!
response = client.chat.completions.create(
    model="deepseek-v4",   # or qwen3, glm-4, kimi-k3
    messages=[{"role": "user", "content": "Hello!"}]
)

JavaScript (openai SDK)

import OpenAI from 'openai';

const client = new OpenAI({
  baseURL: 'https://eaf9553505eeb8f5-115-190-107-107.serveousercontent.com/v1',
  apiKey: 'your-api-key'
});

const response = await client.chat.completions.create({
  model: 'deepseek-v4',
  messages: [{ role: 'user', content: 'Hello!' }]
});

cURL

curl https://eaf9553505eeb8f5-115-190-107-107.serveousercontent.com/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"deepseek-v4","messages":[{"role":"user","content":"Hello!"}]}'

Supported Models

Model IDProviderContextBest For
deepseek-v4DeepSeek128KLatest flagship, general purpose
deepseek-r1DeepSeek128KReasoning, math, code
qwen3.6-flashAlibaba32KFast responses, chatbots
qwen-maxAlibaba128KHigh quality, content gen
glm-4-flashZhipu AI128KUltra-fast inference
kimi-k3Moonshot128KLong documents, research

Why Switch?

OpenAI GPT-4oAI Token Hub (DeepSeek V4)
Input cost / 1M tokens$2.50$0.005
Output cost / 1M tokens$10.00$0.01
API formatOpenAIOpenAI-compatible ✅
SDK changes needed2 lines

Works With

LangChain LlamaIndex Dify FastGPT AnythingLLM Open WebUI ChatGPT-Next-Web One-API LobeChat CrewAI

Start Saving 99% Today

Free trial — code HNTEN2026

Get API Key →