API live · measured 2026-07-16

Kimi K3, measured

The pricing, the model ID, the million-token window — measured on launch day, so your first call just works.

kimi-k3 · real response · 2026-07-16
{
  "model": "kimi-k3",
  "choices": [{
    "message": {
      "content": "OK",
      "reasoning_content": "The user is asking…"
    },
    "finish_reason": "stop"
  }],
  "usage": {
    "prompt_tokens": 90,
    "completion_tokens": 47,
    "completion_tokens_details":
      { "reasoning_tokens": 31 },  // billed as output
    "prompt_tokens_details":
      { "cached_tokens": 90 }      // 10× cheaper
  }
}
Model ID
kimi-k3
Input
$3.00 /1M
Cached input
$0.30 /1M
Output
$15.00 /1M
Context
1,048,576

Kimi K3 is Moonshot AI's flagship model, launched July 2026. The API is live now: model ID kimi-k3, a 1,048,576-token context window, $3.00 per 1M input tokens ($0.30 cached) and $15.00 per 1M output. It speaks the OpenAI format, and EvoLink carries it at the same rates — no markup, one base_url change, no Chinese phone number.

Prices from the official page, 2026-07-16. Everything marked measured, we ran ourselves — how.

Change one line and it runs

K3 speaks the OpenAI format. Point base_url at a gateway that carries it, set the model, done.

python · openai sdk
from openai import OpenAI

client = OpenAI(
    api_key="YOUR_EVOLINK_API_KEY",
    base_url="https://direct.evolink.ai/v1",   # <-- the one line you change
)

response = client.chat.completions.create(
    model="kimi-k3",
    messages=[{"role": "user", "content": "Explain prompt caching in two sentences."}],
)

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

Leave max_completion_tokens at its 131,072 default unless you have read why capping it backfires. Full walkthrough, auth, and streaming: the API guide.

Get a key and make the call

EvoLink carries kimi-k3 on an OpenAI-compatible endpoint — one key reaches GPT, Claude, Gemini, and dozens of the world's mainstream models. 10 free credits, sign up from anywhere — no Chinese phone number.

Get an EvoLink API key