Skip to main content

Stable Video Diffusion - Image to Video

Generate high-quality videos from static images using StabilityAI's Stable Video Diffusion model with precise control over generation parameters and reproducible results.

Note: Image files must first be uploaded using the Asset API before processing. The imageUrl parameter should contain the path returned from the Asset API upload.

Endpoint

Request Headers

FieldValue
API-KEY<api-key>
Content-Typeapplication/json

Request Parameters

Field NameTypeExampleDescriptionRequired
typestringIMAGE_TO_VIDEOFeature identifier✔️
modelstringstable-video-diffusionAI model to use✔️
conversationIdstringIMAGE_TO_VIDEOConversation context✔️
promptObject.imageUrlstringimages/example.jpgSource image path from Asset API upload✔️
promptObject.seednumber12345Random seed for reproducible generation✔️
promptObject.cfg_scalenumber2.5Controls adherence to input image (0-10)✔️
promptObject.motion_bucket_idnumber127Controls amount of motion (1-255)✔️

Code Examples

curl --location 'https://api.1min.ai/api/features' \
--header 'API-KEY: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"type": "IMAGE_TO_VIDEO",
"model": "stable-video-diffusion",
"conversationId": "IMAGE_TO_VIDEO",
"promptObject": {
"imageUrl": "images/2025_10_22_07_10_43_846_elon-musk.jpg",
"seed": 42,
"cfg_scale": 2.5,
"motion_bucket_id": 127
}
}'

Interactive Playground

API Playground

https://api.1min.ai/api/features
Path to the source image file uploaded via Asset API
Random seed for reproducible generation (0-4294967295)
Controls how closely the model follows the input image (0-10, higher values = stricter adherence)
Controls the amount of motion in the generated video (1-255, higher values = more motion)

Generated cURL Command:

curl -X POST "https://api.1min.ai/api/features" \
-H "API-KEY: <your-api-key>" \
-H "Content-Type: application/json" \
-d '{
"type": "IMAGE_TO_VIDEO",
"model": "stable-video-diffusion",
"conversationId": "IMAGE_TO_VIDEO",
"promptObject": {
"imageUrl": "images/2025_10_22_07_10_43_846_elon-musk.jpg",
"seed": 42,
"cfg_scale": 2.5,
"motion_bucket_id": 127
}
}'

Response

{}