Wan 2.2 Animate
ImageNot available
Wan 2.2 Animate (move mode). Replace elements in video using a reference image.
- Type
- Image Animation
- Billed
- per vid
- Provider
- Wan
Pricing
/ vidPrice$6.50 / vid
Supported parameters
modelSettings- Video Inputvideo_input
- Image Inputimage_input
- Resolutionresolution
- Nsfw Checkernsfw_checker
Code examples
POST /v1/generationsGenerations are async — the request returns immediately with an id; poll for the result.
python
import requests
response = requests.post(
"https://api.modelstack.cc/v1/generations",
headers={"Authorization": "Bearer sk_YOUR_API_KEY"},
json={
"type": "IMAGE_TO_VIDEO_ANIMATE",
"prompt": "A serene mountain landscape at sunset",
"model": "wan/2.2-animate",
"modelSettings": {
"resolution": "1K"
}
},
)
generation_id = response.json()["data"]["id"]
# Poll for the result
result = requests.get(
f"https://api.modelstack.cc/v1/generations/{generation_id}",
headers={"Authorization": "Bearer sk_YOUR_API_KEY"},
).json()
print(result["data"]["status"])Related models
Frequently asked questions
How is Wan 2.2 Animate billed on ModelStack?expand_more
Wan 2.2 Animate (Image Animation) is billed at a flat, prepaid rate of $6.50 / vid — generation pricing has no tier-based discounts. Final request costs are available in the console.
Which parameters does Wan 2.2 Animate support?expand_more
Wan 2.2 Animate supports: Video Input, Image Input, Resolution, Nsfw Checker.
How can I generate with Wan 2.2 Animate?expand_more
Use the Generate composer in your dashboard, or call the API directly with model `wan/2.2-animate` and type `IMAGE_TO_VIDEO_ANIMATE` — see the code example above.