About Seedance 2.0 Mini - Reference to Video
ByteDance Seedance 2.0 Mini generates video from a text prompt guided by reference images, videos, and audio, a cost-effective option built for high-volume video creation. Supports 480p and 720p output.
Ready to build with Seedance 2.0 Mini - Reference to Video?
Try Seedance 2.0 Mini - Reference to Video in the Workbench to prompt it, compare outputs, and iterate on prompts without writing any code. When you're ready to ship, call the same model from our API and build your own apps on top of it.
curl -sSf -X POST https://hub.oxen.ai/api/ai/videos/generate \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OXEN_API_KEY" \
-d '{
"model": "bytedance-seedance-2-0-mini-reference-to-video",
"prompt": "A lone ox walks down an empty desert highway at golden hour, dust drifting behind it, slow cinematic camera move, warm low sunlight, shallow depth of field.",
"generate_audio": true,
"aspect_ratio": "16:9",
"duration": -1,
"resolution": "720p",
"watermark": false
}'Request parameters
Every field Seedance 2.0 Mini - Reference to Video accepts in the request body. See the API reference for response formats.
POST
https://hub.oxen.ai/api/ai/videos/generate| Field | Type | Required | Default | Description |
|---|---|---|---|---|
prompt | string | Yes | — | The text prompt used to generate the video. Use @Image1, @Image2, @Video1, @Audio1, etc. to reference inputs. Face-containing media is indexed before non-face media within its type. |
input_face_images | array<string> | No | — | Place reference images here when they show a real human face. Content filters may block the request otherwise. |
input_images | array<string> | No | — | Reference images that guide the generated video. Up to 9 total reference images and up to 15 total references across all types may be used. |
input_face_videos | array<string> | No | — | Place reference videos here when they show a real human face. Content filters may block the request otherwise. |
input_videos | array<string> | No | — | Reference videos that guide the generated video. Up to 3 total reference videos and up to 15 total references across all types may be used. |
input_audios | array<string> | No | — | Reference audios that guide the generated video. Up to 3 total reference audios and up to 15 total references across all types may be used. |
generate_audio | boolean | No | true | Whether to generate synchronized audio. |
aspect_ratio | string | No | "16:9" | adaptive21:916:94:31:13:49:16 |
duration | integer | No | -1 | Range: 4 – 15 |
resolution | string | No | "720p" | 480p720p |
watermark | boolean | No | false | Whether to add an 'AI generated' watermark to the output. |