HomeModels › Kimi-K3
Moonshot · 1M Context

Kimi-K3 API

Moonshot Kimi K3 is the flagship 1M-context multimodal reasoning model — Moonshot's most capable release. Cheaper than OpenRouter on NovAI. Requires temperature=1 (handled automatically by NovAI).

$2.90
Input / 1M tokens
$14.50
Output / 1M tokens
1M
Context window
Reasoning
Flagship
Sign Up - Get $2.00 Free Credit See All Pricing

Why use Kimi-K3 on NovAI?

  • Flagship reasoning model (Moonshot's strongest)
  • Massive 1M-token context window
  • Multimodal understanding
  • Cheaper than OpenRouter ($2.90 / $14.50 vs $3.00 / $15.00 per 1M)
  • Auto temperature handling
  • Zero platform fee

Best use cases

  • Long-document and repo-scale reasoning
  • Complex multi-step agents
  • Research, analysis & synthesis
  • Advanced coding and refactoring

Quick start

cURL

curl https://aiapi-pro.com/v1/chat/completions \
  -H "Authorization: Bearer $NOVAI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "kimi-k3",
    "messages": [{"role":"user","content":"Summarize the key trade-offs in this 200-page spec."}]
  }'

Python (OpenAI SDK)

from openai import OpenAI
client = OpenAI(
    base_url="https://aiapi-pro.com/v1",
    api_key="YOUR_NOVAI_API_KEY",
)
resp = client.chat.completions.create(
    model="kimi-k3",
    messages=[{"role":"user","content":"Summarize the key trade-offs in this 200-page spec."}],
)
print(resp.choices[0].message.content)

Try Kimi-K3 today

Zero platform fee. Credits never expire. OpenAI-compatible API.

Sign Up Free