Qwen3 & Kimi K3 API

Access Alibaba's Qwen and Moonshot's Kimi models through one unified, OpenAI-compatible API endpoint.

Start Free →

🔵 Qwen3 by Alibaba

  • Models: qwen3.6-flash, qwen3-flash, qwen-plus, qwen-max
  • Strengths: Multimodal, strong Chinese, fast inference
  • Context: Up to 128K tokens
  • Best for: Production apps, content generation, chatbots

🟣 Kimi K3 by Moonshot AI

  • Model: kimi-k3
  • Strengths: Ultra-long context, strong reasoning
  • Context: Up to 128K tokens
  • Best for: Document analysis, summarization, research

Model Comparison

ModelProviderContextSpeedIdeal Use Case
qwen3.6-flashAlibaba32K⚡⚡⚡Fast completions, chatbots
qwen3-flashAlibaba32K⚡⚡⚡Quick responses, classification
qwen-plusAlibaba128K⚡⚡General purpose, content
qwen-maxAlibaba128KComplex reasoning, analysis
kimi-k3Moonshot128K⚡⚡Long documents, research

Quick Start — Python

from openai import OpenAI

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

# Use Qwen3
response = client.chat.completions.create(
    model="qwen3.6-flash",  # Fast and cheap
    messages=[
        {"role": "user", "content": "Summarize this document..."}
    ]
)
print(response.choices[0].message.content)

# Use Kimi K3 for long context tasks
response = client.chat.completions.create(
    model="kimi-k3",  # Great for long documents
    messages=[
        {"role": "user", "content": "Analyze this 100-page report..."}
    ]
)

Quick Start — JavaScript

import OpenAI from 'openai';

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

// Switch models with a single parameter
const qwen = await client.chat.completions.create({
  model: 'qwen-plus',
  messages: [{ role: 'user', content: 'Hello from Qwen!' }]
});

const kimi = await client.chat.completions.create({
  model: 'kimi-k3',
  messages: [{ role: 'user', content: 'Hello from Kimi!' }]
});

Why Use Our Gateway?

One Key, All Models

Stop managing separate API keys for each provider. Get one key that works across Qwen, Kimi, DeepSeek, GLM, and more — 11 models total.

No Provider Registration

Skip registering with Alibaba Cloud, Moonshot AI, Zhipu AI separately. Sign up once and access all Chinese LLMs instantly.

Drop-in OpenAI Replacement

Already using OpenAI SDK? Just change the base_url. Works with LangChain, LlamaIndex, Vercel AI SDK, and more.

Access 11 Chinese LLMs Today

Qwen3 • Kimi K3 • DeepSeek V4 • GLM-4 • and more

Get Free API Key →