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 数据政策。