Now Open Source — July 27, 2026

Kimi K3 is Officially Open Source

2.8T parameters MoE · #1 on MMLU-Pro at 89.2% · 256K context window
Any developer can now download weights or call via API

Get Free API Key → View Model Details
中文 | English

K3 at a Glance

MetricK3GPT-5DeepSeek V4
MMLU-Pro89.2%87.8%88.1%
HumanEval+94.7%93.2%92.8%
GSM8K96.4%95.1%95.6%
Context Window256K128K128K
API Input Price$0.50/M$2.50/M$0.50/M
API Output Price$2.00/M$10.00/M$2.00/M

Source: Artificial Analysis, July 2026

Two Ways to Use K3

Option 1: Local Inference (requires hardware)

K3 uses 2.8T total / 32B active MoE architecture. Recommended setup:

Weights on Hugging Face: moonshotai/kimi-k3

Option 2: API (recommended, 2-minute setup)

No GPUs, no config, no waiting for downloads. Call K3 (and 5 other top Chinese models) through a single TokenEase API endpoint.

Start Using K3 API in 2 Minutes

Step 1: Get Your Free API Key (30 seconds)

curl -X POST https://tokenease.io/api/register \
  -H "Content-Type: application/json" \
  -d '{"email":"your@email.com"}'

Get $1 worth of tokens (1M tokens) valid for 14 days. No credit card required.

Step 2: Call K3 in 3 Lines

from openai import OpenAI

client = OpenAI(
    api_key="your-tokenease-key",
    base_url="https://tokenease.io/v1"
)

response = client.chat.completions.create(
    model="kimi-k3",
    messages=[{"role": "user", "content": "Explain quantum computing like I'm 5"}]
)

print(response.choices[0].message.content)

Step 3: Switch Models Instantly

models = ["kimi-k3", "deepseek-chat", "glm-4-plus", "qwen-plus"]

for model in models:
    response = client.chat.completions.create(
        model=model,
        messages=[{"role": "user", "content": "Write a Python function to reverse a string"}]
    )
    print(f"{model}: {response.choices[0].message.content[:50]}...")

Why TokenEase?

FeatureMoonshot DirectOpenRouterTokenEase
K3 Input Price$0.50/M$0.75/M$0.50/M
K3 Output Price$2.00/M$3.00/M$2.00/M
Single EndpointNoYesYes
Overseas DevelopersCN phone requiredSupportedNo CN phone needed
Multi-ModelSeparate accountsSupportedOne key, all models
Auto-FailoverNoLimited6-provider backup
Free TrialLimitedNo1M tokens

Who Is This For?

Get Started Now

Get Free API Key →

1M tokens · 14 days · No credit card

中文版教程

中文教程: Kimi K3 今日正式开源 — 2分钟接入API