About
ByteDance's most advanced image-to-video model. Animate still images into cinematic video with synchronized audio, start and end frame control, and motion prompts.
1. Calling the API
Setup your API Key
To begin using Infron, you first need to create an account and generate your API Key.
Once you have your API key, set it as an environment variable in your runtime environment. This allows your applications to securely access Infron’s API.
export INFRON_KEY="YOUR_API_KEY"
Submit a request
For long-running requests, you can poll for results.
curl https://media.onerouter.pro/v1/videos/generations \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d @- <<'EOF'
{
"model": "bytedance/seedance-2.0/image-to-video",
"prompt": "Both accelerate hard out of a corner together — grandmother's wheelchair wobbles at the limit, she counter-steers with pure instinct, knuckles white on the joystick, her reading glasses flying off her face into the slipstream. The F1 driver glances over through his visor, visibly shaken. She doesn't look back. They hit the straight — the F1 car pulls away slowly, but she tucks into its wake and drafts, inching back up. Cut to the grandstands erupting.",
"start_image_url": "https://storage.googleapis.com/infron_gcs/image%2Fplayground-inputs%2F15%2F20260602%2F7f4e76f8-9617-4110-91ba-def6625cc59e.jpg",
"aspect_ratio": "16:9",
"duration": "4",
"resolution": "4k",
"generate_audio": true,
"n": 1,
"seed": 123456
}
EOF
Response with queue task id
The response will look like this:
{
"code": 200,
"message": "success",
"data": {
"task_id": "991e1acb52d7437b954ffcc111ffd18a",
"object": "video",
"model": "bytedance/seedance-2.0/image-to-video",
"status": "created",
"urls": {
"query": "https://media.onerouter.pro/v1/videos/tasks/991e1acb52d7437b954ffcc111ffd18a"
},
"created_at": "2026-06-25 06:33:41.13"
}
}
Fetch request status
You can fetch the status of a request to check if it is completed or still in progress.
curl https://media.onerouter.pro/v1/videos/tasks/{task_id} \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
# For example
curl https://media.onerouter.pro/v1/videos/tasks/991e1acb52d7437b954ffcc111ffd18a \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
Response with queue task status query
{
"code": 200,
"message": "success",
"data": {
"task_id": "991e1acb52d7437b954ffcc111ffd18a",
"object": "video",
"model": "bytedance/seedance-2.0/image-to-video",
"status": "in_progress",
"fail_reason": "",
"submit_time": 1782369221,
"start_time": 1782369225,
"finish_time": 0,
"outputs": [],
"created_at": "2026-06-25 06:33:41"
}
}
Possible statuses:
- created
- in_progress
- processing
- completed
- failed
created -> in_progress → processing → completed | failed
Poll every 1-2 seconds until status is "completed" or "failed"
Get the result (when status is "completed")
Once the request is completed, you can fetch the result. See the Output Schema for the expected result format.
{
"code": 200,
"message": "success",
"data": {
"task_id": "991e1acb52d7437b954ffcc111ffd18a",
"object": "video",
"model": "bytedance/seedance-2.0/image-to-video",
"status": "completed",
"fail_reason": "",
"submit_time": 1782369221,
"start_time": 1782369225,
"finish_time": 1782369564,
"outputs": [
"https://storage.googleapis.com/infron_gcs/video%2Fvideo_v2%2Foutput%2Foutput_8ebeb8a4-e73e-4308-83cc-764c3b483474.mp4"
],
"usage": {
"completion_tokens": 785700,
"duration": 4,
"generate_audio": true,
"output_count": 1,
"prompt_tokens": 0,
"request_num": 1,
"resolution": "4k",
"tokens": 785700,
"total_tokens": 785700,
"video_duration": 4
},
"cost": {
"total_cost": 5.4999,
"cost_details": {
"prompt_cost": 0,
"completion_cost": 0,
"image_cost": 0,
"video_cost": 5.4999,
"audio_cost": 0,
"native_web_search_cost": 0,
"plugin_web_search_cost": 0,
"tools_cost": 0,
"prompt_cache_read_cost": 0,
"prompt_cache_write_cost": 0,
"prompt_cache_write_5_min": 0,
"prompt_cache_write_1_h": 0,
"reasoning_cost": 0,
"discount_rate": 1,
"is_byok": false,
"byok_cost": 0
}
},
"created_at": "2026-06-25 06:33:41"
}
}
2. Schema
Input
| Parameter | Type | Required | Default | Range | Description |
|---|---|---|---|---|---|
| model | string | Yes | -- | Explore all models | Model name. |
| prompt | string | Yes | -- | -- | Text prompt for generation; Positive text prompt. |
| startimageurl | string | Yes | -- | -- | The URL of the first image to use as a reference for the generation. |
| endimageurl | string | No | -- | -- | The URL of the last image to use as a reference for the generation. |
| aspect_ratio | string | No | 16:9 | 21:9, 16:9, 4:3, 1:1, 3:4, 9:16 | Aspect ratio of the generated video |
| duration | string | No | 5 | 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 | Duration of the generated video |
| resolution | string | No | 720p | 480p, 720p, 1080p, 4k | Resolution of the generated video |
| generate_audio | boolean | No | true | true, false | Whether to generate audio. |
| n | integer | No | 1 | ==1 | Number of videos to generate. |
| seed | integer | No | -- | >=1 | The random seed to use for the generation. |
Example request
curl https://media.onerouter.pro/v1/videos/generations \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d @- <<'EOF'
{
"model": "bytedance/seedance-2.0/image-to-video",
"prompt": "Both accelerate hard out of a corner together — grandmother's wheelchair wobbles at the limit, she counter-steers with pure instinct, knuckles white on the joystick, her reading glasses flying off her face into the slipstream. The F1 driver glances over through his visor, visibly shaken. She doesn't look back. They hit the straight — the F1 car pulls away slowly, but she tucks into its wake and drafts, inching back up. Cut to the grandstands erupting.",
"start_image_url": "https://storage.googleapis.com/infron_gcs/image%2Fplayground-inputs%2F15%2F20260602%2F7f4e76f8-9617-4110-91ba-def6625cc59e.jpg",
"aspect_ratio": "16:9",
"duration": "4",
"resolution": "4k",
"generate_audio": true,
"n": 1,
"seed": 123456
}
EOF
Output
| Parameter | Type | Range | Description |
|---|---|---|---|
| code | integer | -- | Status code of the request. |
| message | string | -- | Status message of the request. |
| data | object | -- | Data of the video task. |
| data.task_id | string | -- | ID of the video task. |
| data.object | string | -- | Object type of the video task. |
| data.model | string | -- | Model name of the video task. |
| data.status | string | created, in_progress, processing, completed, failed | Status of the video task. |
| data.fail_reason | string | -- | Fail reason of the video task. |
| data.submit_time | integer | -- | Timestamp of the video task submission. |
| data.start_time | integer | -- | Timestamp of the video task start. |
| data.finish_time | integer | -- | Timestamp of the video task finish. |
| data.outputs | array | -- | Outputs of the video task. |
| data.created_at | string | -- | Timestamp of the video task creation. |
Example output
{
"code": 200,
"message": "success",
"data": {
"task_id": "991e1acb52d7437b954ffcc111ffd18a",
"object": "video",
"model": "bytedance/seedance-2.0/image-to-video",
"status": "completed",
"fail_reason": "",
"submit_time": 1782369221,
"start_time": 1782369225,
"finish_time": 1782369564,
"outputs": [
"https://storage.googleapis.com/infron_gcs/video%2Fvideo_v2%2Foutput%2Foutput_8ebeb8a4-e73e-4308-83cc-764c3b483474.mp4"
],
"usage": {
"completion_tokens": 785700,
"duration": 4,
"generate_audio": true,
"output_count": 1,
"prompt_tokens": 0,
"request_num": 1,
"resolution": "4k",
"tokens": 785700,
"total_tokens": 785700,
"video_duration": 4
},
"cost": {
"total_cost": 5.4999,
"cost_details": {
"prompt_cost": 0,
"completion_cost": 0,
"image_cost": 0,
"video_cost": 5.4999,
"audio_cost": 0,
"native_web_search_cost": 0,
"plugin_web_search_cost": 0,
"tools_cost": 0,
"prompt_cache_read_cost": 0,
"prompt_cache_write_cost": 0,
"prompt_cache_write_5_min": 0,
"prompt_cache_write_1_h": 0,
"reasoning_cost": 0,
"discount_rate": 1,
"is_byok": false,
"byok_cost": 0
}
},
"created_at": "2026-06-25 06:33:41"
}
}
3. Detailed Pricing
| Input Type | Resolution | Price |
|---|---|---|
| With video input | 480p / 720p | $4.30 / 1M tokens |
| Without video input | 480p / 720p | $7.00 / 1M tokens |
| With video input | 1080p | $4.70 / 1M tokens |
| Without video input | 1080p | $7.70 / 1M tokens |
| With video input | 4K | $2.40 / 1M tokens |
| Without video input | 4K | $4.00 / 1M tokens |
| Input Type | Resolution | Duration | Estimated Price |
|---|---|---|---|
| With video input | 480p / 720p | 5 s | ~$0.39–$0.86 |
| With video input | 480p / 720p | 10 s | ~$0.78–$1.72 |
| With video input | 480p / 720p | 15 s | ~$1.17–$2.58 |
| Without video input | 480p / 720p | 5 s | ~$0.63–$1.40 |
| Without video input | 480p / 720p | 10 s | ~$1.26–$2.80 |
| Without video input | 480p / 720p | 15 s | ~$1.89–$4.20 |
| With video input | 1080p | 5 s | ~$0.84–$1.86 |
| With video input | 1080p | 10 s | ~$1.68–$3.72 |
| With video input | 1080p | 15 s | ~$2.52–$5.58 |
| Without video input | 1080p | 5 s | ~$1.38–$3.05 |
| Without video input | 1080p | 10 s | ~$2.76–$6.10 |
| Without video input | 1080p | 15 s | ~$4.14–$9.15 |
| With video input | 4K | 5 s | ~$1.44–$3.20 |
| With video input | 4K | 10 s | ~$2.88–$6.40 |
| With video input | 4K | 15 s | ~$4.32–$9.60 |
| Without video input | 4K | 5 s | ~$2.40–$5.33 |
| Without video input | 4K | 10 s | ~$4.80–$10.67 |
| Without video input | 4K | 15 s | ~$7.20–$16.00 |