Seedance V1 Pro generates coherent multi-shot image-to-video outputs with smooth motion and prompt-accurate results in 1080p. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Idle
$0.6per run·~16 / $10
Fixed shot of the man on the right side of the frame walking up to the man on the left side of the frame and expressing his strong feelings of dissatisfaction to him
Set in an underwater canyon, sunbeams pierce the water’s surface. A whale glides gently between coral cliffs. [Top-down shot] begins on shimmering sunlight, then tilts down slowly as the massive whale emerges from the shadows. As it enters full view, the camera pulls back to reveal the vast seascape. In the final moment, the whale gently pivots.
A miniature city made of cardboard and bottle caps comes alive at night. A cardboard train rolls slowly through the scene, dotted with tiny lights that softly illuminate its path.
A cinematic drone shot at sunrise over a dense forest. Golden light streams through layers of morning fog. [Slow push-in shot] above the treetops reveals a distant waterfall emerging in the background. Hyperreal detail, soft lighting, and shallow depth of field create a dreamlike atmosphere.
In a tranquil snowy landscape, a red origami crane glides weightlessly through the air, wings fluttering gracefully. The camera follows as it skims over a lake, where the reflection of distant mountains and a pale sun shimmer on the surface.
A watercolor-style illustration of a forest. A small white rabbit wearing a bow collects mushrooms amidst soft, painted foliage.
The camera begins in a dimly lit interrogation room, focusing closely on the eyes of a white woman in her early 30s. It slowly pulls back to reveal her full face—platinum blonde hair slightly disheveled, her expression calm but betraying flickers of anxiety. She sits upright in a metal chair, tense wrists resting on the cold tabletop. A harsh overhead light casts sharp shadows across her face, creating stark contrast and strong shadow lines.
Inside a subway car, a man sits perfectly still amid the rushing blur of commuters. [Static front-facing shot] frames him in the center of the bench. Blurred figures pass as streaks—people boarding, switching seats—while he remains motionless, staring forward. Occasionally, ghostlike faces flash into view within motion trails. Fluorescent lights above flicker faintly.
A cluster of poppies sways in the breeze—white, yellow, and vibrant red. Sunlight filters through the petals from behind, revealing their delicate translucency.
Seedance v1 Pro I2V 1080p generates high-quality 1080p videos from a single reference image plus a motion-focused prompt. Upload a starting image, describe the action and camera intent, and the model animates the scene while keeping the input image as the visual anchor. You can also provide an optional last_image to better control how the clip ends, and enable camera_fixed to keep the camera locked while motion happens within the frame.
| Duration | Price per video |
|---|---|
| 5s | $0.60 |
| 10s | $1.20 |
| 15s | $1.80 |
| 20s | $2.40 |
For better control, write prompts like a director’s beat sheet:
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/bytedance/seedance-v1-pro-i2v-1080p with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Seedance v1 Pro I2v 1080p below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/bytedance/seedance-v1-pro-i2v-1080p" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"image": "https://example.com/your-input.jpg",
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"duration": 5,
"aspect_ratio": "21:9",
"camera_fixed": false,
"seed": -1
}'
# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
-H "Authorization: Bearer $WAVESPEED_API_KEY"
# When status is "completed", read the output from data.outputs[0].// npm install wavespeed
const WaveSpeed = require('wavespeed');
const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env
const result = await client.run("bytedance/seedance-v1-pro-i2v-1080p", {
"image": "https://example.com/your-input.jpg",
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"duration": 5,
"aspect_ratio": "21:9",
"camera_fixed": false,
"seed": -1
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"bytedance/seedance-v1-pro-i2v-1080p",
{
"image": "https://example.com/your-input.jpg",
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"duration": 5,
"aspect_ratio": "21:9",
"camera_fixed": false,
"seed": -1
}
)
print(output["outputs"][0]) # → URL of the generated outputSeedance v1 Pro I2v 1080p is a ByteDance model for video generation from images, exposed as a REST API on WaveSpeedAI. Seedance V1 Pro generates coherent multi-shot image-to-video outputs with smooth motion and prompt-accurate results in 1080p. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing. You can call it programmatically or try it from the playground above.
POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/bytedance/bytedance-seedance-v1-pro-i2v-1080p.
Seedance v1 Pro I2v 1080p starts at $0.60 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.
Key inputs: `prompt`, `image`, `aspect_ratio`, `duration`, `seed`, `camera_fixed`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/bytedance/bytedance-seedance-v1-pro-i2v-1080p.
Average end-to-end generation time on WaveSpeedAI is around 56 seconds per request — measured across recent runs. Queue time scales with global demand; live status is visible in the prediction record.
Commercial usage rights depend on the model's license, set by its provider (ByteDance). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.