Moonshot
Jedes Moonshot-Modell auf Synthorai: ein Endpoint, Live-Preise.
3 Modelle · chat / code / reasoning / tools · ab $0.574/M Input
Warum Moonshot über Synthorai
- Nutzungsbasierte Abrechnung, kein Abo. Ein Key, jedes Modell. Kein Moonshot-Konto erforderlich.
- Keine Prompt-Speicherung. Standardmäßig keine Prompt-Speicherung am Gateway; upstream gelten Moonshots API-Datenrichtlinien. Details →
- Prompt-Caching. Automatisches Caching mit Hit/Miss-Preisen: Gecachte Input-Token werden zur vergünstigten Cache-Treffer-Rate abgerechnet, ohne dass Cache-Management nötig ist. Cache-Lesezugriffe ab $0.115/M.
Position von Moonshot · Eingabepreis über 60 Chat-Modelle
- Alibaba $0.05 - $2.5
- ByteDance $0.1 - $0.5
- Google $0.1 - $2
- DeepSeek $0.138 - $1.32
- Tencent $0.14
- OpenAI $0.2 - $30
- MiniMax $0.22 - $0.3
- Moonshot $0.574 - $3
- Anthropic $1 - $10
- Z.ai $1 - $1.4
Jeder Balken reicht vom günstigsten bis zum teuersten Chat-Modell eines Anbieters, sodass sichtbar wird, wo dieser im Vergleich zum übrigen Katalog steht.
Moonshot-Modelle & Preise
| Modell | Input /M | Output /M | Cache-Read /M | Kontext |
|---|---|---|---|---|
| Kimi K2.5 | $0.574 | $3.011 | $0.115 | 262K |
| Kimi K2.7 Code | $0.95 | $4 | $0.19 | 256K |
| Kimi K3 | $3 | $15 | $0.3 | 1M |
Listenpreise der Anbieter, ohne Plattform-Aufschlag. Die Preise werden auf jeder Modellseite live aktualisiert. Dies sind offizielle Listenpreise. Angemeldete Kunden sehen auf /console/pricing die effektiven Preise inklusive Workspace-Rabatten.
Moonshot-Modelle in 30 Sekunden nutzen
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.chat.completions.create(
model="kimi-k3",
messages=[{"role": "user", "content": "Summarize this diff"}],
reasoning_effort="medium",
)
print(resp.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://synthorai.io/v1",
apiKey: "sk-syn-...",
});
const resp = await client.chat.completions.create({
model: "kimi-k3",
messages: [{ role: "user", content: "Summarize this diff" }],
reasoning_effort: "medium",
});
console.log(resp.choices[0].message.content);curl https://synthorai.io/v1/chat/completions \
-H "Authorization: Bearer sk-syn-..." \
-H "Content-Type: application/json" \
-d '{
"model": "kimi-k3",
"messages": [{"role": "user", "content": "Hello"}],
"reasoning_effort": "medium"
}'package main
import (
"context"
"fmt"
"github.com/openai/openai-go/v3"
"github.com/openai/openai-go/v3/option"
)
func main() {
client := openai.NewClient(
option.WithBaseURL("https://synthorai.io/v1"),
option.WithAPIKey("sk-syn-..."),
)
resp, _ := client.Chat.Completions.New(context.TODO(), openai.ChatCompletionNewParams{
Model: "kimi-k3",
Messages: []openai.ChatCompletionMessageParamUnion{
openai.UserMessage("Summarize this diff"),
},
ReasoningEffort: openai.ReasoningEffortMedium,
})
fmt.Println(resp.Choices[0].Message.Content)
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.chat.completions.*;
import com.openai.models.ReasoningEffort;
OpenAIClient client = OpenAIOkHttpClient.builder()
.baseUrl("https://synthorai.io/v1")
.apiKey("sk-syn-...")
.build();
ChatCompletion resp = client.chat().completions().create(
ChatCompletionCreateParams.builder()
.model("kimi-k3")
.addUserMessage("Summarize this diff")
.reasoningEffort(ReasoningEffort.MEDIUM)
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));Über Moonshot
Moonshot AIs Kimi-Modelle sind bekannt für sehr lange Kontextfenster und starke agentische Coding- und Tool-Nutzungs-Leistung. Synthorai stellt Kimi hinter demselben OpenAI-kompatiblen Endpoint wie der Rest des Katalogs bereit, mit nutzungsbasierter Abrechnung und ohne separates Moonshot-Konto.
FAQ
Wie bekomme ich einen Moonshot-API-Key ohne Abo?
Sie brauchen kein Moonshot-Konto: Registrieren Sie sich bei Synthorai, erstellen Sie einen API-Key, und jedes Moonshot-Modell auf dieser Seite funktioniert über den OpenAI-kompatiblen Endpoint: nutzungsbasierte Abrechnung, ohne Abo (als „geschlossene Beta“ markierte Modelle erfordern zusätzlich eine genehmigte Bewerbung).
Was kostet die Moonshot API?
Token-basiert abgerechnete Modelle starten bei $0.574/M Input-Tokens; der Live-Preis pro Einheit steht für jedes Modell in der Tabelle oben; es sind Listenpreise der Anbieter ohne Plattform-Aufschlag.
Kann ich meinen eigenen Moonshot-Key nutzen (BYOK)?
BYOK ist für Moonshot noch nicht verfügbar. Anfragen laufen über Synthorais verwaltete Kanäle zu den gelisteten Raten.
Wie sieht die Datenspeicherungs-Richtlinie von Moonshot über die API aus?
Standardmäßig keine Prompt-Speicherung am Gateway; upstream gelten Moonshots API-Datenrichtlinien.
Weitere Anbieter