Kimi K3
moonshot/kimi-k3
Moonshot's flagship — a 2.8-trillion-parameter open MoE with 1M context, image + text input, returning reasoning_content. Live-verified 2026-07-17 (chat, tools, vision).
Code Examples
from blockrun_llm import LLMClient
client = LLMClient() # Uses BLOCKRUN_WALLET_KEY (never sent to server)
response = client.chat("moonshot/kimi-k3", "Hello!")import { LLMClient } from '@blockrun/llm';
const client = new LLMClient(); // Uses BLOCKRUN_WALLET_KEY (never sent to server)
const response = await client.chat('moonshot/kimi-k3', 'Hello!');curl -X POST https://blockrun.ai/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "PAYMENT-SIGNATURE: <payment_header>" \
-d '{
"model": "moonshot/kimi-k3",
"messages": [{"role": "user", "content": "Hello!"}],
"max_tokens": 1024
}'Pricing
No markup on official Moonshot rates; $0.001 fee per call.
Payment
Pay per request with USDC on Base. No subscription required.
Try It
Send a message to try Kimi K3
Connect your wallet to enable payments
About Moonshot Kimi K3
Kimi K3 is a reasoning, coding and vision model from Moonshot with a 1.05M-token context window and up to 66K tokens of output per call. It is billed per token at the provider's list rate, with no markup on chat tokens. It is served through BlockRun's OpenAI-compatible API, so it can be called without an account, an API key, or a subscription.
What it costs
Kimi K3 is billed per token. The underlying rates are $3.00 per million input tokens and $15.00 per million output tokens with no platform margin on chat tokens; only a small per-transaction fee covering on-chain settlement is added on top, and the resulting price is quoted in the 402 before you pay. You are charged for the tokens a request actually consumes — there is no monthly commitment and no unused balance to forfeit. With a context window of 1,048,576 tokens and up to 65,536 tokens of output, a single call can carry a substantial working set.
Specifications
- Context window
- 1,048,576 tokens
- Maximum output
- 65,536 tokens
- API compatibility
- OpenAI-compatible
- Payment
- USDC via x402
- Categories
- chat, reasoning, coding, vision
Calling it from your code
Pass moonshot/kimi-k3 as the model field. Because the endpoint mirrors the OpenAI chat completions schema, any existing OpenAI client works by changing the base URL — streaming, tool use, and multi-turn messages all behave the same way.
The first request returns a 402 carrying the exact price; a signed retry runs it, and client libraries fold the two into one call — how the payment works. See the documentation for request and response shapes, the LLM API page for every model on this endpoint, or browse the full catalog of 78 chat models to compare alternatives.
Related models
Every model on BlockRun is reached through the same endpoint and the same payment flow, so switching is a one-line change to the model field. These are the closest alternatives to Kimi K3:
- Z.ai GLM-5.3 Flash$0.15 in / $0.50 out per 1M
- Z.ai GLM-5.2$1.40 in / $4.40 out per 1M
- Z.ai GLM-5.1$1.40 in / $4.40 out per 1M
- Z.ai GLM-5$1.00 in / $3.20 out per 1M
- Z.ai GLM-5 Turbo$1.20 in / $4.00 out per 1M
- Z.ai GLM-5.3$1.40 in / $4.40 out per 1M