Back to modelsBuy Plan
ByteDance
Doubao Seed 2.1 Turbo
Doubao Seed 2.1 Turbo 是 Seed 2.1 系列高性价比版本,功能与 Pro 对齐、价格约为一半,适合高并发企业流量与低延迟场景。
Quick Stats
Context
256K
Max Output
256K
Provider
ByteDance
Specs
1
Modalities
in textin imageout text
Specs & List Price (per 1M tokens)
Quality
Input $0.441176Output $2.205882Cache read $0.088235
Recommended Plan
Doubao Seed 2.1 Turbo Starter Plan
Pay-as-you-go after top-up; $1 free credit for new users.
API Endpoint
Model ID
volcengine/doubao-seed-2.1-turbocURL
curl https://intertoken.ai/v1/chat/completions \
-H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "volcengine/doubao-seed-2.1-turbo",
"messages": [{"role": "user", "content": "Hello!"}]
}'Python
from openai import OpenAI
client = OpenAI(
base_url="https://intertoken.ai/v1",
api_key="$TOKENPORTAL_API_KEY",
)
resp = client.chat.completions.create(
model="volcengine/doubao-seed-2.1-turbo",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)Start using this model
Sign up free, get an API key, and make your first call in 30 seconds.