Seedance 2.0 Mini

Model Information

Display Name: Seedance 2.0 Mini

API Model ID: bytedance/seedance-2.0-mini

Category: Image To Video

Description: Seedance 2.0 Mini is ByteDance's compact video generation model, offering the Seedance 2.0 multimodal pipeline at the lowest cost per second. Supports text-to-video, image-to-video with first/last frame control, and reference-to-video guided by images. **Key Features:** - 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:** - High-volume, budget-friendly video generation - Social media clips and short-form content - Rapid prototyping and storyboarding - Product and marketing previews **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.053/s - 720p: $0.115/s **Technical Specs:** - Model ID: bytedance/seedance-2.0-mini - 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 Mini via the HInow.ai API, use the model ID: bytedance/seedance-2.0-mini

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

Pricing

  • total: $0.053

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-mini"

Featured: No

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

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

Back to Models

Seedance 2.0 Mini

bytedance/seedance-2.0-mini

$0.053
per second

About

Seedance 2.0 Mini is ByteDance's compact video generation model, offering the Seedance 2.0 multimodal pipeline at the lowest cost per second. Supports text-to-video, image-to-video with first/last frame control, and reference-to-video guided by images.

Key Features:

  • 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:

  • High-volume, budget-friendly video generation
  • Social media clips and short-form content
  • Rapid prototyping and storyboarding
  • Product and marketing previews

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.053/s
  • 720p: $0.115/s

Technical Specs:

  • Model ID: bytedance/seedance-2.0-mini
  • 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-mini",
    "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": ""
    }
  }'