moonshotai/kimi-k3
Veröffentlichungsdatum: 2026-07-16
1,048,576 context · $3.00/M input tokens · $15.00/M output tokens
Kimi K3 is Moonshot AI's flagship open-weight multimodal reasoning model. It is built for complex coding, knowledge work, and long-horizon agentic workflows, with strong performance on large codebase navigation, tool use, debugging, visual reasoning, and iterative problem solving. WaveSpeed AI exposes moonshotai/kimi-k3 through an OpenAI-compatible API, so it can be used with standard OpenAI SDKs and existing chat-completions-based application flows.
Pay-per-Use
Keine Vorabkosten, zahlen Sie nur, was Sie nutzen
Verwenden Sie die folgenden Codebeispiele zur Integration mit unserer API:
import OpenAI from 'openai';
if (!process.env.WAVESPEED_API_KEY) throw new Error('Set WAVESPEED_API_KEY');
const client = new OpenAI({
apiKey: process.env.WAVESPEED_API_KEY,
baseURL: 'https://llm.wavespeed.ai/v1',
timeout: 120_000,
maxRetries: 2,
});
try {
const response = await client.chat.completions.create({
model: 'moonshotai/kimi-k3',
messages: [{ role: 'user', content: 'Hello!' }],
});
console.log(response.choices[0]?.message?.content ?? '');
} catch (error) {
console.error('LLM request failed:', error);
process.exitCode = 1;
}import OpenAI from 'openai';
if (!process.env.WAVESPEED_API_KEY) throw new Error('Set WAVESPEED_API_KEY');
const client = new OpenAI({
apiKey: process.env.WAVESPEED_API_KEY,
baseURL: 'https://llm.wavespeed.ai/v1',
timeout: 120_000,
maxRetries: 2,
});
try {
const response = await client.chat.completions.create({
model: 'moonshotai/kimi-k3',
messages: [{ role: 'user', content: 'Hello!' }],
});
console.log(response.choices[0]?.message?.content ?? '');
} catch (error) {
console.error('LLM request failed:', error);
process.exitCode = 1;
}Kimi K3 is Moonshot AI's flagship open-weight multimodal reasoning model. It is designed for complex coding, knowledge work, and long-horizon agentic workflows, and is especially strong at large repository understanding, tool use, debugging, and iterative work across images, logs, tests, and runtime feedback.
WaveSpeed AI exposes moonshotai/kimi-k3 through an OpenAI-compatible API, so it can be used with standard OpenAI SDKs and existing chat-completions-based application flows.
| Specification | Value |
|---|---|
| Provider | Moonshot AI |
| Model ID | moonshotai/kimi-k3 |
| Model Family | Kimi K3 |
| Positioning | Flagship open-weight multimodal reasoning model |
| Parameters | 2.8T |
| Context Window | 1,000,000 tokens |
| Max Output | 131,072 tokens by default |
| Vision | Supported |
| Function Calling | Supported |
| Structured Outputs | Supported |
| Recommended Workloads | complex coding, reasoning, agentic workflows, multimodal analysis, long-context tasks |
Kimi K3 is built with KDA (Kimi Delta Attention) and Attention Residuals to improve computational efficiency at scale. It is positioned for demanding workflows such as long-horizon programming, knowledge-intensive tasks, and multimodal reasoning over both text and images.
Use Chat Completions when you want a straightforward OpenAI-compatible integration path for conversational, coding, and agent workflows.
Python
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://llm.wavespeed.ai/v1"
)
response = client.chat.completions.create(
model="moonshotai/kimi-k3",
messages=[
{"role": "user", "content": "Review this bug report and identify the most likely root cause."}
]
)
print(response.choices[0].message.content)
cURL
curl https://llm.wavespeed.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "moonshotai/kimi-k3",
"messages": [
{"role": "user", "content": "Review this bug report and identify the most likely root cause."}
]
}'
Kimi K3 supports native visual understanding, making it a strong fit for tasks such as screenshot debugging, UI review, diagram analysis, and image-grounded reasoning.
Python
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://llm.wavespeed.ai/v1"
)
response = client.chat.completions.create(
model="moonshotai/kimi-k3",
messages=[
{
"role": "user",
"content": [
{"type": "text", "text": "Describe the issue shown in this screenshot."},
{
"type": "image_url",
"image_url": {
"url": "data:image/png;base64,BASE64_IMAGE_DATA"
}
}
]
}
]
)
print(response.choices[0].message.content)
Kimi K3 is well suited for applications that combine reasoning with tools and schema-constrained outputs.
Common use cases include:
kimi-k3moonshotai/kimi-k3moonshotai/kimi-k3
Kimi K3 is Moonshot AI's flagship open-weight multimodal reasoning model. It is built for complex coding, knowledge work, and long-horizon agentic workflows, with strong performance on large codebase navigation, tool use, debugging, visual reasoning, and iterative problem solving. WaveSpeed AI exposes `moonshotai/kimi-k3` through an OpenAI-compatible API, so it can be used with standard OpenAI SDKs and existing chat-completions-based application flows.
Eingabe
$3 /M
Ausgabe
$15 /M
Kontext
1049K
Vision
Unterstützt
Tool-Nutzung
Unterstützt
Zugriff auf Kimi K3 über unsere einheitliche API — OpenAI-kompatibel, keine Kaltstarts, transparente Preise.
Preise auf WaveSpeedAI: $3.00 pro Million Input-Tokens und $15.00 pro Million Output-Tokens. Prompt-Caching und Batch-Verarbeitung werden separat berechnet und reduzieren die effektiven Kosten bei langen, sich wiederholenden Workloads.
Kimi K3 unterstützt bis zu 1049K Kontext-Tokens und bis zu — Output-Tokens pro Anfrage.
WaveSpeedAI stellt Kimi K3 unter https://llm.wavespeed.ai/v1 über die OpenAI-kompatible Chat-Completions-Schnittstelle bereit. Bei den meisten OpenAI-SDK-Clients reichen Base-URL und API-Schlüssel; optionale Felder hängen vom Modell ab.
Melden Sie sich bei WaveSpeedAI an, erstellen Sie unter Access Keys einen API-Schlüssel und senden Sie eine Anfrage mit der oben gezeigten Modell-ID an https://llm.wavespeed.ai/v1/chat/completions. Verfügbarkeit, Fähigkeiten und Preise finden Sie im aktuellen Modellkatalog.