Moonshot AI's flagship Kimi model for frontier intelligence, agentic coding, knowledge work, and deep reasoning. Kimi K3 supports a 1-million-token context window for long-running software engineering and research workflows.
1.0M tokens
1
available
Cheapest
Moonshot AI
$4.00/1M tokens
Moonshot AI
Sorted by total cost (input + output per 1M tokens). Click a row to view provider details.
| Provider | Pricing (per 1M) | Rate Limits | Regions | Health | Latency |
|---|---|---|---|---|---|
In: $1.00Out: $3.00 | 200 RPM / 500K TPM | us-east-1global | Healthy | 0ms |
Use this model via Moonshot AI with an OpenAI-compatible SDK.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.moonshot.com/v1",
apiKey: process.env.MOONSHOT_API_KEY,
});
const response = await client.chat.completions.create({
model: "kimi-k3",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Using Moonshot AI API • OpenAI-compatible SDK