MiniMax
Jedes MiniMax-Modell auf Synthorai: ein Endpoint, Live-Preise.
1 Modelle · chat / code / reasoning / tools · ab $0.3/M Input
Warum MiniMax über Synthorai
- Nutzungsbasierte Abrechnung, kein Abo. Ein Key, jedes Modell. Kein MiniMax-Konto erforderlich.
- Keine Prompt-Speicherung. Standardmäßig keine Prompt-Speicherung am Gateway; upstream gelten MiniMaxs API-Datenrichtlinien. Details →
- Prompt-Caching. Automatisches Präfix-Caching, sobald ein Prompt 512 Input-Token überschreitet; Cache-Lesevorgänge werden zur vergünstigten Cache-Treffer-Rate abgerechnet, ohne Code-Änderungen und ohne Schreibgebühr. Cache-Lesezugriffe ab $0.06/M.
MiniMax-Modelle & Preise
| Modell | Input /M | Output /M | Cache-Read /M | Kontext |
|---|---|---|---|---|
| MiniMax M3 | $0.3 | $1.2 | $0.06 | 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.
MiniMax-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="minimax-m3",
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: "minimax-m3",
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": "minimax-m3",
"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: "minimax-m3",
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("minimax-m3")
.addUserMessage("Summarize this diff")
.reasoningEffort(ReasoningEffort.MEDIUM)
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));Über MiniMax
MiniMaxs M-Serie kombiniert die proprietäre MiniMax-Sparse-Attention-Architektur (MSA) mit nativem multimodalem Verständnis und offenen Gewichten und zielt auf langfristige Agent-Aufgaben und das Verständnis ganzer Codebasen bei bis zu 1M Token Kontext. Auf Synthorai sitzt die Linie hinter einem einzigen OpenAI-kompatiblen Endpoint mit nutzungsbasierter Live-Abrechnung und ohne MiniMax-Konto: base_url tauschen, Code behalten.
FAQ
Wie bekomme ich einen MiniMax-API-Key ohne Abo?
Sie brauchen kein MiniMax-Konto: Registrieren Sie sich bei Synthorai, erstellen Sie einen API-Key, und jedes MiniMax-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 MiniMax API?
Token-basiert abgerechnete Modelle starten bei $0.3/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 MiniMax-Key nutzen (BYOK)?
BYOK ist für MiniMax noch nicht verfügbar. Anfragen laufen über Synthorais verwaltete Kanäle zu den gelisteten Raten.
Wie sieht die Datenspeicherungs-Richtlinie von MiniMax über die API aus?
Standardmäßig keine Prompt-Speicherung am Gateway; upstream gelten MiniMaxs API-Datenrichtlinien.