More modelsAlibabaWan 2.2 animate

Generate video with alibaba/wan-2.2/animate

Generates a video using the alibaba/wan-2.2/animate model.

POST
/api/v1/model/generateVideo
AuthorizationBearer <token>

API key is required to authorize requests. Obtain a key from your AtlasCloud dashboard.

In: header

modelstring

model name

imagestring

The image for generating the output.

mode?string

The mode of the generation. Animate Mode: animate the character in input image with movements from the input video. Replace Mode: replace the character in input video with the character in input image.

Value in"animate" | "replace"
prompt?string

The prompt for generating the output.

resolution?string

The resolution of the output video.

Value in"480p" | "720p"
seed?integer

The random seed to use for the generation. -1 means a random seed will be used.

Default-1
videostring

The video for generating the output.

Response Body

curl -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \  -H "Content-Type: application/json" \  -d '{    "model": "alibaba/wan-2.2/animate",    "image": "string",    "video": "string"  }'
{
  "created_at": "2019-08-24T14:15:22Z",
  "has_nsfw_contents": [
    true
  ],
  "id": "string",
  "model": "string",
  "outputs": [
    "string"
  ],
  "status": "string",
  "urls": {}
}