Documentation Index Fetch the complete documentation index at: https://developer.pixelbyte.app/docs/llms.txt
Use this file to discover all available pages before exploring further.
Animate a still image with ByteDance’s Seedance 2.0 Fast — optimized for shorter processing time and lower cost. Supports configurable resolution, frame rate, and duration.
Property Value Provider ByteDance Model Seedance 2.0 Fast Capability Image to Video Base Cost 200,000 micro-cents/second ($0.20/sec) Processing Time ~180 seconds
Request Body
Model slug. Use bytedance/seedance-2.0-fast/image-to-video for fast image-to-video generation.
Input parameters for image-to-video generation. Text description of the motion and scene (max 5000 characters).
URL of the input start frame image.
Video duration in seconds. Default: 5. Options: 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15.
Output resolution. Default: 720p. Options: 720p, 1440p.
Frames per second. Default: 24. Options: 24, 30, 60.
HTTPS URL to receive a webhook notification when the job completes or fails.
Pricing
Base cost: 200,000 micro-cents per second ($0.20/sec)
finalCost = baseCost × duration × resolution × fps
Factor Option Multiplier Duration 44x 55x 66x 77x 88x 99x 1010x 1111x 1212x 1313x 1414x 1515x Resolution 720p1x 1440p1.5x FPS 241x 301.1x 601.25x
Default cost: 5 seconds, 720p, 24 fps = 200,000 × 5 × 1 × 1 = 1,000,000 micro-cents ($1.00)
Response
Unique identifier for the submitted job.
Initial job status. Always "pending" on successful submission.
ISO 8601 timestamp of the estimated completion time.
The cost of the job in micro-cents.
Code Examples
curl -X POST https://api.muvi.video/v1/jobs/submit \
-H "Authorization: Bearer $PIXELBYTE_API_KEY " \
-H "Content-Type: application/json" \
-d '{
"model": "bytedance/seedance-2.0-fast/image-to-video",
"input": {
"prompt": "The boat sails forward through gentle waves as seagulls fly overhead",
"image_url": "https://example.com/image.jpg",
"duration": "5",
"resolution": "720p",
"fps": "24"
}
}'