ByteDance
Synthorai 上的所有 ByteDance 模型:一個端點,即時價格。
8 個模型 · chat / tools / image / code · 輸入價低至 $0.1/M
為什麼透過 Synthorai 使用 ByteDance
- 按用量計費,無需訂閱。 一組 key 用遍所有模型,無需 ByteDance 帳號。
- 零提示詞留存。 閘道器預設零提示詞留存;上游適用字節跳動自身的 API 資料政策。 詳情 →
- 提示詞快取。 Seed 語言模型預設開啟隱式前綴快取(最小 1,024 token,無儲存費);另有顯式的上下文快取 API。媒體模型(影像 / ASR)不可快取。 快取讀取低至 $0.02/M。
ByteDance 模型與價格
| 模型 | 輸入 /M | 輸出 /M | 快取讀取 /M | 上下文 |
|---|---|---|---|---|
| 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 | — | — | — |
廠商牌價,無平台加價。各模型頁面的價格即時更新。 以下為官方 list 價。已登入的使用者可在 /console/pricing 查看含工作空間折扣的實際價格。
30 秒用上 ByteDance 模型
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(""));關於 ByteDance
字節跳動在 Synthorai 上的模型線以媒體為核心:旗艦 Seedream 家族負責影像生成,Seed ASR 負責語音轉文字,另有 Seed 語言模型家族(Dola-Seed 2.0 各檔和 ByteDance-Seed 1.8)。按圖、按分鐘的一口價已在下方公佈,與閘道器上其他所有模型一樣使用 OpenAI 相容端點。
常見問題
不用訂閱要怎麼取得 ByteDance API key?
不需要 ByteDance 帳號:註冊 Synthorai,建立一組 API key,本頁所有 ByteDance 模型都能透過 OpenAI 相容端點呼叫,按用量計費,無需訂閱(標示「邀請制測試」的模型另需申請通過)。
ByteDance API 的價格是多少?
按 token 計費的模型輸入價低至 $0.1/M;每個模型的即時單價見上表,皆為廠商牌價,無平台加價。
可以使用自己的 ByteDance 金鑰(BYOK)嗎?
ByteDance 的 BYOK 暫未開放,請求經 Synthorai 的託管通道按所列費率執行。
ByteDance 的 API 資料留存政策是什麼?
閘道器預設零提示詞留存;上游適用字節跳動自身的 API 資料政策。