Seedance 2.0 Fast

Model Information

Display Name: Seedance 2.0 Fast

API Model ID: bytedance/seedance-2.0-fast

Category: Image To Video

Description: Seedance 2.0 Fast is ByteDance's speed-optimized video generation model. It keeps the Seedance 2.0 feature set — text-to-video, image-to-video with first/last frame control, and multimodal reference-to-video — while prioritizing generation speed and lower cost over maximum output quality. **Key Features:** - Fast turnaround for iteration-heavy workflows - Text-to-video and image-to-video generation - First frame and last frame control - Multimodal reference-to-video (image references) - Optional synchronized audio generation - 480p and 720p output - 7 aspect ratios (16:9, 9:16, 1:1, 4:3, 3:4, 21:9, 9:21) - Duration: 4-15 seconds **Capabilities:** - Text-to-video generation - Image-to-video animation - Start/end frame interpolation - Reference-guided generation (style, subject, composition) - Native audio generation **Best For:** - Quick previews and creative exploration - Social media and short-form content at scale - A/B testing prompts before a full-quality render - Cost-sensitive production pipelines **Output Options:** - Resolution: 480p, 720p - 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.064/s - 720p: $0.137/s **Technical Specs:** - Model ID: bytedance/seedance-2.0-fast - 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 Fast via the HInow.ai API, use the model ID: bytedance/seedance-2.0-fast

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-fast",
  "prompt": "Your image description here"
}
              

Pricing

  • total: $0.064

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)
  • 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-fast"

Featured: No

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

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

Back to Models

Seedance 2.0 Fast

bytedance/seedance-2.0-fast

$0.064
per second

About

Seedance 2.0 Fast is ByteDance's speed-optimized video generation model. It keeps the Seedance 2.0 feature set — text-to-video, image-to-video with first/last frame control, and multimodal reference-to-video — while prioritizing generation speed and lower cost over maximum output quality.

Key Features:

  • Fast turnaround for iteration-heavy workflows
  • Text-to-video and image-to-video generation
  • First frame and last frame control
  • Multimodal reference-to-video (image references)
  • Optional synchronized audio generation
  • 480p and 720p output
  • 7 aspect ratios (16:9, 9:16, 1:1, 4:3, 3:4, 21:9, 9:21)
  • Duration: 4-15 seconds

Capabilities:

  • Text-to-video generation
  • Image-to-video animation
  • Start/end frame interpolation
  • Reference-guided generation (style, subject, composition)
  • Native audio generation

Best For:

  • Quick previews and creative exploration
  • Social media and short-form content at scale
  • A/B testing prompts before a full-quality render
  • Cost-sensitive production pipelines

Output Options:

  • Resolution: 480p, 720p
  • 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.064/s
  • 720p: $0.137/s

Technical Specs:

  • Model ID: bytedance/seedance-2.0-fast
  • 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

480p720p
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-fast",
    "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": ""
    }
  }'