Seedance 2.0

Model Information

Display Name: Seedance 2.0

API Model ID: bytedance/seedance-2.0

Category: Image To Video

Description: Seedance 2.0 is ByteDance's flagship video generation model. It supports text-to-video, image-to-video with first and last frame control, and multimodal reference-to-video, and is particularly strong at preserving character consistency, visual style, and camera movement from reference material. Outputs up to 4K. **Key Features:** - Text-to-video and image-to-video generation - First frame and last frame control - Multimodal reference-to-video (image references) - Strong character, style, and camera-motion consistency - Optional synchronized audio generation - 480p, 720p, 1080p, and 4K output - 7 aspect ratios (16:9, 9:16, 1:1, 4:3, 3:4, 21:9, 9:21) - Duration: 4-15 seconds **Capabilities:** - Cinematic text-to-video generation - Image-to-video animation with consistency control - Start/end frame interpolation - Reference-guided generation (characters, style, composition) - Native audio generation - Camera movement and multi-shot coherence **Best For:** - Professional and cinematic video production - Marketing and advertising content - Character-driven storytelling with consistent subjects - High-resolution deliverables (1080p / 4K) **Output Options:** - Resolution: 480p, 720p, 1080p, 4K - Aspect Ratios: 16:9, 9:16, 1:1, 4:3, 3:4, 21:9, 9:21 - Duration: 4-15 seconds - Audio: Optional (generate_audio) **Pricing Tiers (per second):** - 480p: $0.106/s - 720p: $0.229/s - 1080p: $0.565/s - 4K: $1.174/s **Technical Specs:** - Model ID: bytedance/seedance-2.0 - Input: Text prompt, up to 2 frame images (first/last) or reference images - Output: MP4 video (optionally with audio) - API: OpenRouter Video API (async, polled by the gateway)

How to Use This Model

To use Seedance 2.0 via the HInow.ai API, use the model ID: bytedance/seedance-2.0

API Request Example (Image Generation)


POST https://api.hinow.ai/v1/images
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "bytedance/seedance-2.0",
  "prompt": "Your image description here"
}
              

Pricing

  • total: $0.106

Available Parameters

  • duration: Video duration in seconds (4-15). Default: 5 (Options: 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15)
  • resolution: Output video resolution. Default: 720p (Options: 480p, 720p, 1080p, 4k)
  • aspect_ratio: Output video aspect ratio. Default: 16:9 (Options: 16:9, 9:16, 1:1, 4:3, 3:4, 21:9, 9:21)
  • generate_audio: Generate synchronized audio with the video. Default: true (Options: true, false)
  • image_mode: How images[] are used. frames: images[0] = first frame, images[1] = last frame. reference: all images guide style/subject. auto: 1-2 images = frames, 3+ = reference. Default: auto (Options: auto, frames, reference)
  • seed: Seed for reproducible generation (best effort)

Quick Reference

To use this model, set: "model": "bytedance/seedance-2.0"

Featured: No

Documentation: https://hinow.ai/models/bytedance/seedance-2.0

API Endpoint: https://api.hinow.ai/v1

Back to Models

Seedance 2.0

bytedance/seedance-2.0

$0.106
per second

About

Seedance 2.0 is ByteDance's flagship video generation model. It supports text-to-video, image-to-video with first and last frame control, and multimodal reference-to-video, and is particularly strong at preserving character consistency, visual style, and camera movement from reference material. Outputs up to 4K.

Key Features:

  • Text-to-video and image-to-video generation
  • First frame and last frame control
  • Multimodal reference-to-video (image references)
  • Strong character, style, and camera-motion consistency
  • Optional synchronized audio generation
  • 480p, 720p, 1080p, and 4K output
  • 7 aspect ratios (16:9, 9:16, 1:1, 4:3, 3:4, 21:9, 9:21)
  • Duration: 4-15 seconds

Capabilities:

  • Cinematic text-to-video generation
  • Image-to-video animation with consistency control
  • Start/end frame interpolation
  • Reference-guided generation (characters, style, composition)
  • Native audio generation
  • Camera movement and multi-shot coherence

Best For:

  • Professional and cinematic video production
  • Marketing and advertising content
  • Character-driven storytelling with consistent subjects
  • High-resolution deliverables (1080p / 4K)

Output Options:

  • Resolution: 480p, 720p, 1080p, 4K
  • Aspect Ratios: 16:9, 9:16, 1:1, 4:3, 3:4, 21:9, 9:21
  • Duration: 4-15 seconds
  • Audio: Optional (generate_audio)

Pricing Tiers (per second):

  • 480p: $0.106/s
  • 720p: $0.229/s
  • 1080p: $0.565/s
  • 4K: $1.174/s

Technical Specs:

  • Model ID: bytedance/seedance-2.0
  • Input: Text prompt, up to 2 frame images (first/last) or reference images
  • Output: MP4 video (optionally with audio)
  • API: OpenRouter Video API (async, polled by the gateway)

Capabilities

Image To VideoText To Video

Parameters

duration

Video duration in seconds (4-15). Default: 5

456789101112131415
resolution

Output video resolution. Default: 720p

480p720p1080p4k
aspect_ratio

Output video aspect ratio. Default: 16:9

16:99:161:14:33:421:99:21
generate_audio

Generate synchronized audio with the video. Default: true

truefalse
image_mode

How images[] are used. frames: images[0] = first frame, images[1] = last frame. reference: all images guide style/subject. auto: 1-2 images = frames, 3+ = reference. Default: auto

autoframesreference
seed

Seed for reproducible generation (best effort)

Code Examples

curl -X POST https://api.hinow.ai/v1/videos \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HINOW_API_KEY" \
  -d '{
    "model": "bytedance/seedance-2.0",
    "prompt": "A cat playing with a ball",
    "images": ["https://example.com/image.jpg"],
    "parameters": {
      "duration": "4",
      "resolution": "480p",
      "aspect_ratio": "16:9",
      "generate_audio": "true",
      "image_mode": "auto",
      "seed": ""
    }
  }'