Video Generationtextimagevideoaudio

Seedance 2.0

Seedance 2.0 支持多模态输入(图片、视频、音频、文本),具备视频生成、视频编辑和视频延展能力。能够高精度还原物品细节、音色、特效、风格、镜头运动,保持角色特征一致性,提供导演级控制力。输出规格:480p/720p,4-15秒,mp4格式。

Input

Generation mode

Describe the video with text only, no images required.

Reference image (optional)

PNG, JPG or WebP · you can also drag and drop a file here

PNG, JPG or WebP · you can also drag and drop a file here
Duration
Watermark
Resolution
Aspect ratio
Bitrate mode
Generate audio
Ready to generateReady to generate

API Reference

POSThttps://api.token360.ai/v1/videos
# Step 1: Create video generation task
curl https://api.token360.ai/v1/videos \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer your-api-key" \
  -d '{
  "model": "seedance-2.0",
  "prompt": "A cat walking across a room",
  "duration": 5,
  "watermark": false,
  "resolution": "720p",
  "aspect_ratio": "adaptive",
  "bitrate_mode": "standard",
  "generate_audio": true,
  "return_last_frame": false
}'

# Step 2: Poll for completion (replace VIDEO_ID with the id from step 1)
curl https://api.token360.ai/v1/videos/VIDEO_ID \
  -H "Authorization: Bearer your-api-key"