ByteDance
Jedes ByteDance-Modell auf Synthorai: ein Endpoint, Live-Preise.
8 Modelle · chat / tools / image / code · ab $0.1/M Input
Warum ByteDance über Synthorai
- Nutzungsbasierte Abrechnung, kein Abo. Ein Key, jedes Modell. Kein ByteDance-Konto erforderlich.
- Keine Prompt-Speicherung. Standardmäßig keine Prompt-Speicherung am Gateway; upstream gelten ByteDances API-Datenrichtlinien. Details →
- Prompt-Caching. Implizites Präfix-Caching ist bei Seed-Sprachmodellen standardmäßig aktiv (Minimum 1,024 Token, keine Speichergebühr); eine explizite Context-Caching-API ist ebenfalls verfügbar. Medienmodelle (Bild / ASR) sind nicht cachebar. Cache-Lesezugriffe ab $0.02/M.
ByteDance-Modelle & Preise
| Modell | Input /M | Output /M | Cache-Read /M | Kontext |
|---|---|---|---|---|
| Dola Seed 2.0 Pro | $0.5 | $3 | $0.1 | 262K |
| ByteDance Seed 1.8 | $0.25 | $2 | $0.05 | 262K |
| Dola Seed 2.0 Lite | $0.25 | $2 | $0.05 | 262K |
| Dola Seed 2.0 Mini | $0.1 | $0.4 | $0.02 | 262K |
| Seed ASR | $0.002/min | — | — | — |
| Seedream 4.0 | $0.03/img | — | — | — |
| Seedream 4.5 | $0.04/img | — | — | — |
| Seedream 5.0 Lite | $0.035/img | — | — | — |
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.
ByteDance-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="Dola-Seed-2.0-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: "Dola-Seed-2.0-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": "Dola-Seed-2.0-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: "Dola-Seed-2.0-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("Dola-Seed-2.0-pro")
.addUserMessage("Summarize this diff")
.reasoningEffort(ReasoningEffort.MEDIUM)
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));Über ByteDance
ByteDances Modellreihe auf Synthorai konzentriert sich auf Medien: die Flaggschiff-Familie Seedream für Bildgenerierung und Seed ASR für Speech-to-Text, daneben die Seed-Familie von Sprachmodellen (Dola-Seed-2.0-Stufen und ByteDance-Seed 1.8). Die Preise pro Bild und pro Minute sind pauschal und unten veröffentlicht. Es gelten dieselben OpenAI-kompatiblen Endpoints wie bei jedem anderen Modell auf dem Gateway.
FAQ
Wie bekomme ich einen ByteDance-API-Key ohne Abo?
Sie brauchen kein ByteDance-Konto: Registrieren Sie sich bei Synthorai, erstellen Sie einen API-Key, und jedes ByteDance-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 ByteDance API?
Token-basiert abgerechnete Modelle starten bei $0.1/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 ByteDance-Key nutzen (BYOK)?
BYOK ist für ByteDance noch nicht verfügbar. Anfragen laufen über Synthorais verwaltete Kanäle zu den gelisteten Raten.
Wie sieht die Datenspeicherungs-Richtlinie von ByteDance über die API aus?
Standardmäßig keine Prompt-Speicherung am Gateway; upstream gelten ByteDances API-Datenrichtlinien.