Back to modelsBuy Plan
bytedance
Seedance-2.0(字节官方)
Seedance 2.0 是字节跳动旗下火山引擎推出的新一代视频生成大模型。支持文本生成视频和图像生成视频两种模式,具备高画质、强运动连贯性和长镜头表现力。适用于短视频创作、广告营销、影视预演、创意设计等场景。
Quick Stats
Context
8K
Max Output
4K
Provider
bytedance
Specs
1
Modalities
in textin imagein videoout video
Specs & Platform Price (per 1M tokens)
Quality
Input $0Output $0
Video price · by resolution × video input
480P/720p · no video $1.499480P/720p · w/ video $0.9131080P · no video $1.661080P · w/ video $1.01
Recommended Plan
Seedance-2.0(字节官方) Starter Plan
Pay-as-you-go after top-up; $1 free credit for new users.
API Endpoint
Model ID
volcengine/doubao-seedance-2.0cURL
curl https://staging-dp.taotoken.io/v1/chat/completions \
-H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "volcengine/doubao-seedance-2.0",
"messages": [{"role": "user", "content": "Hello!"}]
}'Python (openai SDK)
from openai import OpenAI
client = OpenAI(
base_url="https://staging-dp.taotoken.io/v1",
api_key="$TOKENPORTAL_API_KEY",
)
resp = client.chat.completions.create(
model="volcengine/doubao-seedance-2.0",
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.