Back to modelsBuy Plan
ByteDance
Seedance 2.0
(cs)Seedance 2.0 是字节跳动推出的多模态视频生成模型,支持文本、图片、视频和音频输入,可用于文生视频、图生视频及多模态参考视频生成,并支持同步音视频生成。
Quick Stats
Context
8K
Max Output
4K
Provider
ByteDance
Specs
1
Modalities
in textin imagein audioin videoout video
Specs & Platform Price (per 1M tokens)
Quality
Input $0Output $0
Video price · by resolution × video input
480p · no video $1.5480p · w/ video $0.9720p · no video $2720p · w/ video $1.21080p · no video $2.51080p · w/ video $1.5
Recommended Plan
Seedance 2.0 Starter Plan
Pay-as-you-go after top-up; $1 free credit for new users.
API Endpoint
Model ID
seedance-2.0cs-v2cURL
curl https://staging-dp.taotoken.io/v1/chat/completions \
-H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "seedance-2.0cs-v2",
"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="seedance-2.0cs-v2",
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.