tokencnn.com Documentation v1.0

China's AI, the World's Tool ยท The gateway to China's best AI models

๐ŸŒ Welcome to tokencnn.com

A unified API gateway to 30+ top Chinese and international AI models.
One endpoint. One API key. No real-name verification. No WeChat Pay. No Chinese barriers.

๐Ÿ“š Documentation Map

SectionWhat You'll Find
๐Ÿš€ Quick Start Get your first API call working in under 5 minutes โ€” sign up, get a key, make a request
๐ŸŽฎ Console Guide Navigate the dashboard, manage tokens, check usage logs, top up your wallet
๐Ÿ”Œ API Reference Complete endpoint documentation: Chat, Embeddings, Images, Audio, Rerank, and Management APIs
๐Ÿ‘ค User Manual API key management, payment & top-up, SDK integration for Python, Node.js, and cURL
โš™๏ธ Admin Guide Channel management, model mapping, user management, system configuration
โ“ FAQ Frequently asked questions about payments, API errors, models, and troubleshooting
๐Ÿง  Models Directory Complete listing of all 40+ AI models from 11 providers โ€” DeepSeek, Qwen, Kimi, ERNIE, GLM, Yi, MiniMax, Baichuan, Spark, Hunyuan, Doubao
๐Ÿ’ฐ Pricing Transparent pricing โ€” top-up amounts, per-token rates, payment methods, and example cost scenarios
๐Ÿ“‹ Changelog Version history, feature releases, API changes, and bug fixes

โšก Why tokencnn.com?

AI Models
30+

DeepSeek, Qwen, GLM, Kimi, Doubao, GPT, Claude, Geminiโ€ฆ

Protocol Compat.
100%

OpenAI SDK compatible โ€” just change the base URL

Barrier-Free
โœ…

No real-name auth, credit card/PayPal accepted

๐Ÿฃ Quick Start (30 seconds)

1Go to Console and sign up / log in

2Create an API key in Token Management

3Use the OpenAI SDK with one change:

# Python โ€” just change the base_url
from openai import OpenAI

client = OpenAI(
    base_url="https://www.tokencnn.com",
    api_key="sk-your-key-here"
)

response = client.chat.completions.create(
    model="deepseek-chat",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)

See the full Quick Start guide โ†’

๐Ÿ’ฌ Need Help?

Check the FAQ first, or email us.