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 cinematic motion using ByteDance’s Seedance 2.0. Supports configurable resolution, frame rate, and duration.
| Property | Value |
|---|
| Provider | ByteDance |
| Model | Seedance 2.0 |
| Capability | Image to Video |
| Base Cost | 240,000 micro-cents/second ($0.24/sec) |
| Processing Time | ~300 seconds |
Request Body
Model slug. Use bytedance/seedance-2.0/image-to-video for 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: 240,000 micro-cents per second ($0.24/sec)
finalCost = baseCost × duration × resolution × fps
| Factor | Option | Multiplier |
|---|
| Duration | 4 | 4x |
| 5 | 5x |
| 6 | 6x |
| 7 | 7x |
| 8 | 8x |
| 9 | 9x |
| 10 | 10x |
| 11 | 11x |
| 12 | 12x |
| 13 | 13x |
| 14 | 14x |
| 15 | 15x |
| Resolution | 720p | 1x |
| 1440p | 2x |
| FPS | 24 | 1x |
| 30 | 1.1x |
| 60 | 1.25x |
Default cost: 5 seconds, 720p, 24 fps = 240,000 × 5 × 1 × 1 = 1,200,000 micro-cents ($1.20)
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/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"
}
}'