Veo2 I2V

Veo 2 creates videos from images with realistic motion and very high quality output.

Features

veo2-i2v transforms a single still image into a short, coherent video clip, simulating natural motion, perspective shifts, and time progression — while preserving visual consistency.

Key Features

  • Transforms a static image into dynamic motion
  • Maintains stylistic consistency and visual details
  • Adds realistic camera motion and scene depth
  • Generates short clips (typically 5–8 seconds), perfect for animation and visualization

Use Cases

  • Animating illustrations, posters, or concept art
  • Creating motion previews from stills
  • Enhancing storyboards and static assets for media production

Authentication

For authentication details, please refer to the Authentication Guide.

API Endpoints

Submit Task & Query Result


# Submit the task
curl --location --request POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/veo2-i2v" \
--header "Content-Type: application/json" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}" \
--data-raw '{
    "prompt": "A man bows to the camera.",
    "image": "https://d2g64w682n9w0w.cloudfront.net/media/2f04002af3bb48c1b9807ae154859bcf/images/1748080592182713087_rFVSPLIE.jpg",
    "aspect_ratio": "16:9",
    "duration": "5s"
}'

# Get the result
curl --location --request GET "https://api.wavespeed.ai/api/v3/predictions/${requestId}/result" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}"

Parameters

Task Submission Parameters

Request Parameters

ParameterTypeRequiredDefaultRangeDescription
promptstringYesA man bows to the camera.-The text prompt describing how the image should be animated
imagestringYeshttps://d2g64w682n9w0w.cloudfront.net/media/2f04002af3bb48c1b9807ae154859bcf/images/1748080592182713087_rFVSPLIE.jpg-URL of the input image to animate. Should be 720p or higher resolution.
aspect_ratiostringNo16:9-The aspect ratio of the generated video
durationstringNo5s5s, 6s, 7s, 8sThe duration of the generated video in seconds

Response Parameters

ParameterTypeDescription
codeintegerHTTP status code (e.g., 200 for success)
messagestringStatus message (e.g., “success”)
data.idstringUnique identifier for the prediction, Task Id
data.modelstringModel ID used for the prediction
data.outputsarrayArray of URLs to the generated content (empty when status is not completed)
data.urlsobjectObject containing related API endpoints
data.urls.getstringURL to retrieve the prediction result
data.has_nsfw_contentsarrayArray of boolean values indicating NSFW detection for each output
data.statusstringStatus of the task: created, processing, completed, or failed
data.created_atstringISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”)
data.errorstringError message (empty if no error occurred)
data.timingsobjectObject containing timing details
data.timings.inferenceintegerInference time in milliseconds

Result Query Parameters

Result Request Parameters

ParameterTypeRequiredDefaultDescription
idstringYes-Task ID

Result Response Parameters

ParameterTypeDescription
codeintegerHTTP status code (e.g., 200 for success)
messagestringStatus message (e.g., “success”)
dataobjectThe prediction data object containing all details
data.idstringUnique identifier for the prediction
data.modelstringModel ID used for the prediction
data.outputsarrayArray of URLs to the generated content (empty when status is not completed)
data.urlsobjectObject containing related API endpoints
data.urls.getstringURL to retrieve the prediction result
data.has_nsfw_contentsarrayArray of boolean values indicating NSFW detection for each output
data.statusstringStatus of the task: created, processing, completed, or failed
data.created_atstringISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”)
data.errorstringError message (empty if no error occurred)
data.timingsobjectObject containing timing details
data.timings.inferenceintegerInference time in milliseconds
© 2025 WaveSpeedAI. All rights reserved.