curl --request POST \
--url https://api.modellix.ai/api/v1/bytedance/seedance-2.0-fast-i2v/async \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"prompt": "<string>"
}
'{
"code": 0,
"message": "success",
"data": {
"status": "pending",
"task_id": "task-abc123",
"model_id": "model-123",
"get_result": {
"method": "GET",
"url": "https://api.modellix.ai/api/v1/tasks/task-abc123"
}
}
}Faster variant of Dreamina Seedance 2.0 image-to-video. Accepts the same multimodal inputs as Seedance 2.0 I2V—text prompt plus optional reference images and audio—with lower latency. Resolution limited to 480p/720p.
curl --request POST \
--url https://api.modellix.ai/api/v1/bytedance/seedance-2.0-fast-i2v/async \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"prompt": "<string>"
}
'{
"code": 0,
"message": "success",
"data": {
"status": "pending",
"task_id": "task-abc123",
"model_id": "model-123",
"get_result": {
"method": "GET",
"url": "https://api.modellix.ai/api/v1/tasks/task-abc123"
}
}
}Documentation Index
Fetch the complete documentation index at: https://docs.modellix.ai/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
API Key authentication. Format: Bearer YOUR_API_KEY.
Body
Seedance 2.0 Fast image-to-video request. Same fields as Seedance 2.0 I2V but resolution limited to 480p/720p.
Text describing the video to generate. Reference optional inputs with placeholders such as [Image 1] or [Audio 1] when applicable.
1 - 2000Optional. URL or Base64 of the starting frame. Do not use together with reference_images in the same request.
1"https://example.com/first.jpg"
Optional. URL or Base64 of the ending frame. Do not use together with reference_images in the same request.
1"https://example.com/last.jpg"
Optional. Up to 9 reference images for style or subject guidance. Do not use together with first_frame_image or last_frame_image.
1 - 9 elementsImage URL or Base64 data.
1Optional. Up to 3 reference audio URLs (e.g., for rhythm or voice style).
1 - 3 elementsAudio URL (e.g., https://example.com/audio.mp3)
1Aspect ratio of the generated video.
21:9, 16:9, 4:3, 1:1, 3:4, 9:16 Output resolution of the video. Fast variant does not support 1080p.
480p, 720p Video duration in seconds (4-15 seconds).
4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 Random seed for reproducible generation. Use -1 for random.
-1 <= x <= 4294967295Whether to keep the camera fixed during generation.
Whether to generate audio for the video.
Task expiration time in seconds.
3600 <= x <= 259200Whether to return the last frame of the generated video.