Chinese AI Models, 500x Cheaper
One OpenAI-compatible API. DeepSeek, Qwen, and more. Deploy globally, save massively.
4
Models Available
—
Total API Calls
—
Total Cost (USD)
Singapore
Primary Region
⚡ Quick Start
Replace your OpenAI base URL — that's it.
# Set your base URL
export OPENAI_BASE_URL="https://middlekingdom.cc/v1"
export OPENAI_API_KEY="any-value-for-mvp"
# Call like OpenAI
curl -s $OPENAI_BASE_URL/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-d '{
"model": "deepseek-v4-flash",
"messages": [{"role": "user", "content": "Explain quantum computing in 3 sentences."}]
}'