tokencnn.com Documentation v1.0
๐ 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
| Section | What 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 โ