One API for All
Chinese AI Models

Access 38+ top-tier models including DeepSeek V4, Qwen 3.8, GLM-5.2, Kimi K2.7 through a single OpenAI-compatible endpoint. Start building in minutes.

Quick Start

Get up and running in under 5 minutes. Our API is fully compatible with the OpenAI SDK — just change two lines of code.

Step 1: Install the OpenAI SDK

bash
pip install openai

Step 2: Make your first API call

python
from openai import OpenAI

client = OpenAI(
    api_key="your-api-key",
    base_url="https://bb71d3f3506709ed-101-126-19-34.serveousercontent.com/v1"
)

response = client.chat.completions.create(
    model="deepseek-ai/DeepSeek-V4-Pro",
    messages=[
        {"role": "system", "content": "You are a helpful assistant."},
        {"role": "user", "content": "Explain quantum computing in one paragraph."}
    ],
    temperature=0.7,
    max_tokens=500
)

print(response.choices[0].message.content)
💡 New user?
Use promo code DEVSTARTER20 at registration to get ¥20 free credit — enough for thousands of API calls.

Why AI Token?

⚡ Single Endpoint Simple

Access 38+ models through one URL. No need to manage multiple API keys or integrations for different providers.

🔌 OpenAI Compatible Drop-in

Works with the official OpenAI SDK for Python, Node.js, and more. Just change base_url and api_key.

💰 Cost Effective Save 10-25%

Competitive pricing with volume discounts. DeepSeek V3 from $0.55/M input tokens. Bonus credits on all paid plans.

🔄 Auto Failover Reliable

Automatic fallback to backup models when a provider is unavailable. 99.5%+ uptime guarantee.

🌏 Streaming Support Real-time

Full Server-Sent Events (SSE) streaming support. Set stream=true for real-time token delivery.

🚀 Multi-Modal Vision + Audio

Beyond text: image understanding with Qwen-VL, audio processing with Qwen-Audio, and embeddings for RAG.

38+ Models Available

From reasoning to vision, code generation to audio — we've got every major Chinese AI model covered.

DeepSeek V4 Pro Flagship

Latest DeepSeek reasoning model with enhanced math and coding capabilities.

💰 $1.65/M in 📄 64K ctx
Qwen 3.5 397B MoE

Alibaba's massive MoE model with 397B total parameters, 17B active.

💰 $0.41/M in 📄 128K ctx
Kimi K2.7 Code Code

Moonshot AI's specialized code generation and reasoning model.

💰 $0.68/M in 📄 128K ctx
MiniMax M2.5 Balanced

High-performance general-purpose model with excellent multilingual support.

💰 $0.55/M in 📄 128K ctx

🎁 Start Free with ¥20 Credit

New users get free credits to test all 38+ models. No credit card required.

DEVSTARTER20

API Endpoints

All endpoints follow the OpenAI API specification. Base URL:

url
https://bb71d3f3506709ed-101-126-19-34.serveousercontent.com/v1
POST /v1/chat/completions

Create a model response for the given chat conversation. Supports streaming, function calling, and multi-modal inputs.

POST /v1/completions

Create a completion for the provided prompt and parameters. Legacy endpoint for text generation.

POST /v1/embeddings

Create embedding vectors for the given input text. Ideal for semantic search, RAG, and clustering.

GET /v1/models

List all currently available models and their capabilities.

Ready to Build?

Join thousands of developers using AI Token to access China's best AI models.