ApiModels

Seedance and Seedence Models

Seedance and Seedence modes, configured credit matrices, and Vidrush API examples.

Overview

Vendor: ByteDance. This family includes Seedance 2.0, its Fast and Mini variants, Seedance 1.5 Pro, and the separately configured Seedence 1.0 models. Seedance 2.0, Fast, and Mini are served through the FreeModel provider (APIPod SKUs), matching ViewMax. Fast and Mini add frame and reference controls; 2.0 also exposes 1080p and 4k.

Supported modes

ModelModeDurationsResolutionsAspect ratiosAudio
seedance-2-0text-to-video, image-to-video, frames-to-video, reference-to-video4s, 5s, 6s, 8s, 10s, 12s, 15s480p, 720p, 1080p, 4k1:1, 21:9, 4:3, 3:4, 16:9, 9:16, AutoYes
seedance-2-0-fasttext-to-video, image-to-video, frames-to-video, reference-to-video4s, 5s, 6s, 8s, 10s, 12s, 15s480p, 720p1:1, 21:9, 4:3, 3:4, 16:9, 9:16, AutoYes
seedance-2-minitext-to-video, image-to-video, frames-to-video, reference-to-video4s, 5s, 6s, 8s, 10s, 12s, 15s480p, 720p1:1, 21:9, 4:3, 3:4, 16:9, 9:16, AutoYes
seedance-1-5-protext-to-video, image-to-video4s, 8s, 12s480p, 720p, 1080p1:1, 21:9, 4:3, 3:4, 16:9, 9:16Yes
seedence-1-0-protext-to-video, image-to-video5s, 10s480p, 720p, 1080ptext-to-video: 21:9, 16:9, 4:3, 1:1, 3:4, 9:16; image-to-video: no optionNo
seedence-1-0-pro-fastimage-to-video5s, 10s720p, 1080pNo aspect-ratio option is configuredNo
seedence-1-0-litetext-to-video, image-to-video5s, 10s480p, 720p, 1080ptext-to-video: 16:9, 4:3, 1:1, 3:4, 9:16, 9:21; image-to-video: no optionNo

frames-to-video requires at least two image_urls; reference-to-video requires at least one. Seedance 2.0, Fast, and Mini accept optional video input for reference mode.

Credit pricing

Text-to-video and image-to-video use the same matrix unless noted. Seedance 2.0, Fast, and Mini are billed per second through FreeModel APIPod.

seedance-2-0

For every supported mode, the standard rate is 6 credits/second at 480p, 12 at 720p, 9 at 1080p, and 27 at 4k. The calculation is ceil(rate * duration_seconds). Example: 5s 720p = 60 credits.

For reference-to-video with video input, APIPod bills on (input_seconds + output_seconds). The configured rate is 4 / 7 / 6 / 13 credits/second at 480p / 720p / 1080p / 4k. Provide options.source_video_duration_seconds (sum of reference videos, capped at 15s). If it is omitted, Vidrush bills the 15s cap so the task cannot underpay.

seedance-2-0-fast

For every supported mode, the standard rate is 4 credits/second at 480p and 9 credits/second at 720p. The calculation is ceil(rate * duration_seconds). Example: 5s 480p = 20 credits.

For reference-to-video with video input, APIPod bills 0.6 × unit × (input_seconds + output_seconds). The configured rate is 3 credits/second at 480p or 5 credits/second at 720p, applied to that combined duration. Provide options.source_video_duration_seconds (sum of reference videos, capped at 15s). If it is omitted, Vidrush bills the 15s cap so the task cannot underpay.

seedance-2-mini

For every supported mode, the standard rate is 2 credits/second at 480p and 3 credits/second at 720p. The calculation is ceil(rate * duration_seconds).

For reference-to-video with video input, APIPod bills 0.6 × unit × (input_seconds + output_seconds). The configured rate is 1 credit/second at 480p or 2 credits/second at 720p, applied to that combined duration. Provide options.source_video_duration_seconds (sum of reference videos, capped at 15s). If it is omitted, Vidrush bills the 15s cap so the task cannot underpay.

seedance-1-5-pro

Resolution4s8s12sAudio-enabled price
480p7152114, 30, 42
720p15304530, 60, 90
1080p30609060, 120, 180

The last column applies the configured 2x audio multiplier in the same duration order.

Seedence 1.0

ModelConfigured pricing
seedence-1-0-proStandard quality: 4s = 14, 8s = 28, 12s = 42 credits
seedence-1-0-pro-fastNo detailed credit matrix is configured; the public catalog returns 16+ credits
seedence-1-0-lite480p: 5s = 10, 10s = 20; 720p: 5s = 20, 10s = 30; 1080p: 5s = 30, 10s = 40

seedence-1-0-pro currently exposes 5s and 10s as valid durations while its configured Standard-quality price entries are 4s, 8s, and 12s. Do not infer a price for that mismatch; inspect GET /api/v1/models before submitting a task.

cURL

curl -X POST https://vidrush-ai.com/api/v1/videos \
  -H "Authorization: Bearer $VIDRUSH_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "seedance-2-mini",
    "mode": "text-to-video",
    "prompt": "Ink clouds blooming in clear water",
    "options": {
      "duration": "4s",
      "resolution": "480p",
      "aspect_ratio": "1:1",
      "audio": true
    }
  }'

CLI

vidrush generate -m seedance-2-mini -p "Ink clouds blooming in clear water" \
  --duration 4s --resolution 480p --aspect-ratio 1:1 --audio --wait

MCP

Ask the MCP client for get_video_model before generate_video so it can select the correct Seedance mode and price.

Notes

  • Per-second models round the calculated price up with ceil.
  • Seedance 2.0, Seedance 2 Fast, Seedance 2 Mini, and Seedance 1.5 Pro expose audio: true in this family.
  • The model IDs intentionally use both seedance and seedence; send the IDs exactly as shown.

On this page