No upstream in the chain
We run the weights on our own machines. There is no reseller quota to be cut off from and no third-party account that can be suspended.
Moonshot's official open weights, served from our own cluster at native MXFP4 precision. OpenAI and Anthropic compatible, 1M context, prompt caching at $0.30 per million. Sign up, get $2 to try, first token in ten minutes.
Per million tokens, USD. Provider prices as listed on OpenRouter, September 2026. Moonshot's list price is $3.00 / $15.00. Daily-updated full table.
| Provider | Input | Output | Cached input |
|---|---|---|---|
| Moonshot AI, Fireworks, Together, Baseten, Parasail | 3.00 | 15.00 | 0.30 |
| DeepInfra | 2.85 | 14.25 | 0.285 |
| Sail Research | 2.648 | 13.28 | 0.303 |
| DigitalOcean, Makora | 2.55 | 12.75 to 12.95 | 0.26 to 0.285 |
| Cheapest listed on OpenRouter | 2.10 | 10.95 | 0.23 |
| ainetcafe, pay as you go | 2.10 | 10.50 | 0.30 |
| ainetcafe, committed plan | 1.80 | 9.00 | 0.30 |
| ainetcafe, core plan | 1.50 | 7.50 | 0.30 |
We run the weights on our own machines. There is no reseller quota to be cut off from and no third-party account that can be suspended.
Kimi K3 as released by Moonshot, at its quantization-aware MXFP4 precision. No second quantization, no distilled stand-in. A/B against the official API is welcome.
Chat Completions at /v1, Messages at /v1/messages. Claude Code, Cline, Kilo, OpenCode and Codex CLI connect with one base URL change.
1M context, tool calling, JSON schema output, vision, thinking on or off, streaming with usage. Cache hits bill at $0.30 per million, which is where agent loops spend most of their tokens.
Per million tokens, USD. Card payments through Stripe; committed plans are invoiced monthly.
Individuals running coding agents. Quotas are written in dollars so you know exactly what you get; when a plan runs out, requests keep working at pay-as-you-go rates instead of stopping. Buy under Wallet, then Subscription Plans. Teams should start with Team Starter.
Discounts are defined as a percentage of Moonshot's list price and follow it if it changes. Credits are prepaid and non-refundable. Pay-as-you-go stops at zero balance; there is no negative balance.
Base URL https://microquickjs.com/v1 · Anthropic base URL https://microquickjs.com · model Kimi-K3 · full setup for eight tools in the integration guides
curl https://microquickjs.com/v1/chat/completions \
-H "Authorization: Bearer $AINETCAFE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"Kimi-K3","stream":true,
"messages":[{"role":"user","content":"Summarize this repo in three lines."}]}'
from openai import OpenAI
client = OpenAI(base_url="https://microquickjs.com/v1", api_key=os.environ["AINETCAFE_API_KEY"])
stream = client.chat.completions.create(
model="Kimi-K3",
messages=[{"role": "user", "content": "Summarize this repo in three lines."}],
stream=True,
)
for chunk in stream:
print(chunk.choices[0].delta.content or "", end="")
curl https://microquickjs.com/v1/messages \
-H "x-api-key: $AINETCAFE_API_KEY" \
-H "anthropic-version: 2023-06-01" \
-H "Content-Type: application/json" \
-d '{"model":"Kimi-K3","max_tokens":1024,
"messages":[{"role":"user","content":"Summarize this repo in three lines."}]}'
# Claude Code: point it at ainetcafe, keep everything else
export ANTHROPIC_BASE_URL=https://microquickjs.com
export ANTHROPIC_API_KEY=$AINETCAFE_API_KEY
export ANTHROPIC_MODEL=Kimi-K3
claude
# Cline / Kilo Code / OpenCode / Codex CLI: choose "OpenAI compatible"
Base URL: https://microquickjs.com/v1
API key: your ainetcafe key
Model ID: Kimi-K3
Context: 1000000 (set 262144 if the client caps lower)
We ran the full Kimi Vendor Verifier against our production endpoint, 15–16 September 2026, 50 concurrent, no reruns. Every number, including the ones that did not pass →
Moonshot's reference: 0.82 and 0.89. MMMU is within one standard error of the reference. OCRBench reaches 94%; the gap is handwritten math (49%) and noisy 50-image subsets, broken down by category.
Streaming and non-streaming agree. The six failures share one cause, a strict $id check on tool schemas, reproduced and documented with the fix scheduled.
Seven hours at 50 concurrent, about 35 M tokens, no manual intervention, ≈1,350 tok/s of aggregate output. Latency from outside China is on the live status page.
For companies that want to run real traffic before committing. Pay $500, receive $1,000 in credits and committed-plan treatment for 30 days. One per company domain.