DeepSeek
Jedes DeepSeek-Modell auf Synthorai: ein Endpoint, Live-Preise.
2 Modelle · chat / code / tools / reasoning · ab $0.138/M Input
Warum DeepSeek über Synthorai
- Nutzungsbasierte Abrechnung, kein Abo. Ein Key, jedes Modell. Kein DeepSeek-Konto erforderlich.
- Keine Prompt-Speicherung. Standardmäßig keine Prompt-Speicherung am Gateway; es gelten die Datenrichtlinien des Upstream-Anbieters. Details →
- Prompt-Caching. Automatisches Disk-KV-Präfix-Caching: Cache-Treffer werden zur vergünstigten Cache-Lese-Rate abgerechnet, ohne Opt-in und ohne Schreibgebühr. Cache-Lesezugriffe ab $0.0028/M.
DeepSeek-Modelle & Preise
| Modell | Input /M | Output /M | Cache-Read /M | Kontext |
|---|---|---|---|---|
| DeepSeek V4 Pro | $1.608 | $3.216 | $0.0134 | 131K |
| DeepSeek V4 Flash | $0.138 | $0.275 | $0.0028 | 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.
DeepSeek-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="deepseek-v4-pro",
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: "deepseek-v4-pro",
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": "deepseek-v4-pro",
"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: "deepseek-v4-pro",
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("deepseek-v4-pro")
.addUserMessage("Summarize this diff")
.reasoningEffort(ReasoningEffort.MEDIUM)
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));Über DeepSeek
DeepSeeks Chat- und Reasoner-Modelle liefern nahezu Frontier-Qualität zu einigen der niedrigsten Token-Preise der Branche. Auf Synthorai sitzt DeepSeek hinter demselben OpenAI-kompatiblen Endpoint wie der Rest des Katalogs. Kein direktes DeepSeek-Konto nötig, Live-Preise unten.
FAQ
Wie bekomme ich einen DeepSeek-API-Key ohne Abo?
Sie brauchen kein DeepSeek-Konto: Registrieren Sie sich bei Synthorai, erstellen Sie einen API-Key, und jedes DeepSeek-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 DeepSeek API?
Token-basiert abgerechnete Modelle starten bei $0.138/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 DeepSeek-Key nutzen (BYOK)?
BYOK ist für DeepSeek noch nicht verfügbar. Anfragen laufen über Synthorais verwaltete Kanäle zu den gelisteten Raten.
Wie sieht die Datenspeicherungs-Richtlinie von DeepSeek über die API aus?
Standardmäßig keine Prompt-Speicherung am Gateway; es gelten die Datenrichtlinien des Upstream-Anbieters.