Video models
Wan 2.2 Animate
Wan 2.2 Animate — high-quality AI video generation.
| modelId | wan-2-2-animate-replace, wan-2-2-animate-move |
| Modality | video |
| Pricing | See this model on the Pricing page for the current per-call price (with your markup). |
Operations
| Operation | modelId | Endpoint | Required input |
|---|---|---|---|
| Animate Replace | wan-2-2-animate-replace | POST /api/v1/generate | video_url, image_url |
| Animate Move | wan-2-2-animate-move | POST /api/v1/generate | video_url, image_url |
| Poll task | — | GET /api/v1/task/{id}?model=wan-2-2-animate-replace | — |
Animate Replace — wan-2-2-animate-replace
| Field | Type | Required | Values / example |
|---|---|---|---|
| video_url | string | Yes | URL of the input video. (image URL) |
| image_url | string | Yes | URL of the input image. If the input image does not match the chosen aspect ratio, it is resized and center cropped. (image URL) |
| resolution | string | No | Resolution of the generated video (480p, 580p, or 720p). (options: 480p | 580p | 720p) (default: 480p) |
| nsfw_checker | boolean | No | A configurable parameter. Defaults to true in the Playground. (true/false) (default: true) |
bash
curl -X POST https://you.bot/api/v1/generate \
-H "Authorization: Bearer $YOUBOT_API_KEY" \
-H "Content-Type: application/json" \
-d '{"modelId":"wan-2-2-animate-replace","input":{"video_url":"https://example.com/input.mp4","image_url":"https://example.com/input.jpg","resolution":"480p","nsfw_checker":true}}'Animate Move — wan-2-2-animate-move
| Field | Type | Required | Values / example |
|---|---|---|---|
| video_url | string | Yes | URL of the input video. (image URL) |
| image_url | string | Yes | URL of the input image. If the input image does not match the chosen aspect ratio, it is resized and center cropped. (image URL) |
| resolution | string | No | Resolution of the generated video (480p, 580p, or 720p). (options: 480p | 580p | 720p) (default: 480p) |
| nsfw_checker | boolean | No | A configurable parameter. Defaults to true in the Playground. (true/false) (default: true) |
bash
curl -X POST https://you.bot/api/v1/generate \
-H "Authorization: Bearer $YOUBOT_API_KEY" \
-H "Content-Type: application/json" \
-d '{"modelId":"wan-2-2-animate-move","input":{"video_url":"https://example.com/input.mp4","image_url":"https://example.com/input.jpg","resolution":"480p","nsfw_checker":true}}'