# Seedance Image to Video > Transform images into cinematic videos with smooth transitions and stable motion, supporting resolutions up to 1080p and multi-shot storytelling. ## Overview - **Model ID**: `seedance-i2v` - **Category**: video - **Provider**: byteplus - **Status**: model_ready - **Screenshot**: `https://assets.modelslab.com/generations/951408da-f0ac-4607-8a10-5de429108f1b.webp` ## API Information This model can be used via our HTTP API. See the API documentation and usage examples below. ### Endpoint - **URL**: `https://modelslab.com/api/v7/video-fusion/image-to-video` - **Method**: POST ### Parameters - **`model_id`** (optional): Model - Type: text - **`init_image`** (required): Upload the reference image - Type: file - **`prompt`** (required): Enter prompt for image to video - Type: textarea - Example: Enter prompt here ## Usage Examples ### cURL ```bash curl --request POST \ --url https://modelslab.com/api/v7/video-fusion/image-to-video \ --header "Content-Type: application/json" \ --data '{ "key": "YOUR_API_KEY", "model_id": "seedance-i2v", "init_image": "https://assets.modelslab.com/generations/20f9b872-b705-4b95-a261-727175fcad99", "prompt": "a woman sitting in car, cars passing by, girl talking with us" }' ``` ### Python ```python import requests response = requests.post( "https://modelslab.com/api/v7/video-fusion/image-to-video", headers={ "Content-Type": "application/json" }, json={ "key": "YOUR_API_KEY", "model_id": "seedance-i2v", "init_image": "https://assets.modelslab.com/generations/20f9b872-b705-4b95-a261-727175fcad99", "prompt": "a woman sitting in car, cars passing by, girl talking with us" } ) print(response.json()) ``` ### JavaScript ```javascript fetch("https://modelslab.com/api/v7/video-fusion/image-to-video", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "key": "YOUR_API_KEY", "model_id": "seedance-i2v", "init_image": "https://assets.modelslab.com/generations/20f9b872-b705-4b95-a261-727175fcad99", "prompt": "a woman sitting in car, cars passing by, girl talking with us" }) }) .then(response => response.json()) .then(data => console.log(data)); ``` ## Links - [Model Playground](https://modelslab.com/models/seedance-i2v/seedance-i2v) - [API Documentation](https://docs.modelslab.com) - [ModelsLab Platform](https://modelslab.com)