Skip to main content
Generate videos using ByteDance SeeDance 2.0 Pro with text-to-video, first & last frame, and omni-reference modes. Supports 4–15 second durations at 720p or 1080p with higher quality output.

Model

bytedance/seedance-2.0-pro

Supported Modes

ModeDescription
text_to_videoText-to-video. You control the aspect ratio.
first_last_frameStart frame required, end frame optional. Aspect ratio auto-detected from input.
omni_referenceUp to 9 image/video/audio references (audio max 15s). Use @Image1/@Video1/@Audio1 placeholders in prompt.

Parameters

ParameterTypeRequiredDefaultDescription
promptstringNo""Text prompt. Use @Image1/@Video1/@Audio1 placeholders in omni_reference mode.
modestringYestext_to_video, first_last_frame, or omni_reference
aspect_ratiostringNo"1:1"21:9, 16:9, 4:3, 1:1, 3:4, 9:16. Only used for text-to-video.
durationintegerNo5Duration in seconds (4–15)
resolutionstringNo"720p"720p or 1080p
seedintegerNorandomSeed for reproducibility
first_frame_urlstringConditionalnullStart frame image. Required for first_last_frame.
last_frame_urlstringNonullEnd frame image. Optional for first_last_frame.
referencesstring[]ConditionalnullMedia URLs (images/videos/audio). Audio max 15s. Required for omni_reference. Max 9.

Example - Text-to-Video

curl -X POST https://api.unifically.com/v1/tasks \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "bytedance/seedance-2.0-pro",
    "input": {
      "prompt": "Cinematic slow-motion shot of a dancer performing on a rain-soaked stage",
      "mode": "text_to_video",
      "aspect_ratio": "16:9",
      "duration": 10,
      "resolution": "1080p"
    }
  }'

Example - First & Last Frame

curl -X POST https://api.unifically.com/v1/tasks \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "bytedance/seedance-2.0-pro",
    "input": {
      "prompt": "The car accelerates and drives away into the sunset",
      "mode": "first_last_frame",
      "duration": 12,
      "first_frame_url": "https://example.com/start.jpg",
      "last_frame_url": "https://example.com/end.jpg"
    }
  }'

Example - Omni-Reference

curl -X POST https://api.unifically.com/v1/tasks \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "bytedance/seedance-2.0-pro",
    "input": {
      "prompt": "Make @Image1 come alive in the style of @Video1",
      "mode": "omni_reference",
      "duration": 8,
      "references": [
        "https://example.com/portrait.jpg",
        "https://example.com/animation-style.mp4"
      ]
    }
  }'
References are numbered in order: first image = @Image1, first video = @Video1, first audio = @Audio1, etc. Images, videos, and audio are numbered independently.

Response

{
  "code": 200,
  "success": true,
  "data": {
    "task_id": "abc123def456",
    "status": "pending"
  }
}