WaveSpeedAI APIwan-i2v-480p-lora

Wan I2V 480p LoRA

Wan I2V 480p LoRA is an image-to-video generation API that transforms static images into dynamic, high-quality videos at 480p resolution with customizable styles using LoRA models.

Features

  • Image-to-Video Transformation: Convert still images into fluid motion videos
  • LoRA Style Customization: Apply specific styles to your videos using LoRA models
  • Motion Control: Specify motion direction and intensity
  • High-Quality Output: Generate detailed and high-quality video content
  • HTTP API Access: Simple integration via RESTful API endpoints

Authentication

For authentication details, please refer to the Authentication Guide.

API Endpoints

Submit Task

Submit a task to generate a video from an image using the Wan I2V 480p LoRA API.

curl --location --request POST 'https://api.wavespeed.ai/api/v2/wavespeed-ai/wan-2.1/i2v-480p-lora' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data-raw '{
  "image" "https://example.com/image.jpg",
  "prompt": "a beautiful landscape",
  "negative_prompt": "poor quality, blurry",
  "loras": [
    {
      "path": "style_lora_1",
      "scale": 0.8
    }
  ],
  "size": "832*480",
  "num_inference_steps": 30,
  "guidance_scale": 5.0,
  "seed": -1,
  "enable_safety_checker": true
}'

Query Result

Check the status and retrieve the result of a previously submitted task.

curl --location --request GET 'https://api.wavespeed.ai/api/v2/predictions/{request_id}/result' \
--header 'Authorization: Bearer YOUR_API_KEY'

Parameters

Task Submission Parameters

Request Parameters

ParameterTypeRequiredDefaultRangeDescription
imagestringYes--URL of the input image
promptstringNo""-Prompt text to guide video generation
negative_promptstringNo""-Negative prompt to specify what to avoid in the video
lorasarrayYes-max 3 itemsList of LoRA models to apply
loras[].pathstringYes--Path to the LoRA model
loras[].scalefloatNo0.80.0 ~ 1.0Scale of the LoRA model
sizestringNo”832*480""832480”, “480832”Video dimensions in width*height format
num_inference_stepsintNo301 ~ 40Number of inference steps
guidance_scalefloatNo5.00.0 ~ 10.0Guidance scale for generation
seedintNo-1-Random seed for reproducible results. -1 for random seed
enable_safety_checkerbooleanNotrue-Enable safety checker for generated content

Available LoRA Models

LoRA NameDescription
Remade-AI/SquishCompresses the image subject with a squishing effect
Remade-AI/RotateRotates the image subject around its axis
Remade-AI/InflateInflates or expands the image subject
more …More loras

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 (e.g., wavespeed-ai/wan-2.1/t2v-480p)
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
data.errorstringError message (empty if no error occurred)
data.executionTimeintegerExecution 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 (e.g., wavespeed-ai/wan-2.1/t2v-480p)
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
data.errorstringError message (empty if no error occurred)
data.executionTimeintegerExecution time in milliseconds