Kimi K2.7 Code Highspeed
moonshotai/kimi-k2.7-code-highspeedThe higher-throughput serving variant of K2.7 Code, at twice the price.
- Text, Image, Video
- $3.80 / $16
- 262K
- Jun 16, 2026
Overview
The higher-throughput serving variant of K2.7 Code, at twice the price. It is billed from the same balance as every other model and API here, and the price of each call comes back in the response.
Pricing
The default plan, in USD per million tokens.
| Meter | Per 1M tokens |
|---|---|
| Input | $3.80 |
| Output | $16.00 |
| Cache read | $0.76 |
| Cache write | $3.80 |
Your balance and per-call records come from /v1/credits and /v1/generation.
Use it
Point your client at the gateway and pass this model id. Nothing else changes.
import Anthropic from "@anthropic-ai/sdk";
const client = new Anthropic({
baseURL: "https://gateway.agentsky.dev",
apiKey: process.env.AGENTSKY_API_KEY, // ast_…
});
const message = await client.messages.create({
model: "moonshotai/kimi-k2.7-code-highspeed",
max_tokens: 256,
messages: [{ role: "user", content: "Summarise this ticket." }],
});
console.log(message.usage.cost); // USD, in the response