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 and Fast are served through the FreeModel provider. Seedance 2 Mini adds frame and reference controls.

Supported modes

ModelModeDurationsResolutionsAspect ratiosAudio
seedance-2-0text-to-video, image-to-video5s, 10s, 15s720p16:9, 9:16, 1:1No
seedance-2-0-fasttext-to-video, image-to-video5s, 10s, 15s720p16:9, 9:16, 1:1No
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 Mini accepts optional video input for reference mode.

Credit pricing

Text-to-video and image-to-video use the same matrix unless noted. The two FreeModel-backed Seedance 2 variants share the same duration pricing.

seedance-2-0

Resolution5s10s15s
720p200400600

seedance-2-0-fast

Resolution5s10s15s
720p200400600

seedance-2-mini

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

For reference-to-video with video input, the configured rate is 6 credits/second at 480p or 12.5 credits/second at 720p. In that case, provide options.source_video_duration_seconds.

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.
  • Only 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.