POST
/
v3
/
async
/
wan-2.2-i2v
Wan 2.2 Image to Video
curl --request POST \
  --url https://api.novita.ai/v3/async/wan-2.2-i2v \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '{
  "input": {
    "prompt": "<string>",
    "negative_prompt": "<string>",
    "img_url": "<string>"
  },
  "parameters": {
    "resolution": "<string>",
    "duration": 123,
    "prompt_extend": true,
    "seed": 123
  }
}'
{
  "task_id": "<string>"
}
Wan 2.2 Professional Image-to-Video model generates a 5-second silent video based on the initial frame image and text. It offers significant improvements in visual detail and motion stability.
This is an asynchronous API; only the task_id will be returned. You should use the task_id to request the Task Result API to retrieve the video generation results.

Request Headers

Content-Type
string
required
Supports: application/json
Authorization
string
required
Bearer authentication format, for example: Bearer {{API Key}}.

Request Body

input
object
required
Basic input information, such as prompts.
parameters
object
Video processing parameters, such as specifying the output video resolution and duration.

Response

task_id
string
required
Use the task_id to request the Task Result API to retrieve the generated outputs.