Wan 2.2 Turbo
VideoNot available
Wan 2.2 Turbo audio-to-video generation.
- Type
- Audio to Video
- Billed
- per vid
- Provider
- Wan
Pricing
/ vidPrice$7.00 / vid
Supported parameters
modelSettings- Audio Inputaudio_input
- Image Inputimage_input
- Aspect Ratioaspect_ratio
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": "AUDIO_TO_VIDEO",
"prompt": "A serene mountain landscape at sunset",
"model": "wan/2.2-turbo",
"modelSettings": {
"aspect_ratio": "16:9"
}
},
)
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
Other generation types for this model
More from Wan
Frequently asked questions
How is Wan 2.2 Turbo billed on ModelStack?expand_more
Wan 2.2 Turbo (Audio to Video) is billed at a flat, prepaid rate of $7.00 / vid — generation pricing has no tier-based discounts. Final request costs are available in the console.
What other generation types does Wan 2.2 Turbo support?expand_more
Besides Audio to Video, Wan 2.2 Turbo also supports: Text to Video, Image to Video, Speech to Video.
Which parameters does Wan 2.2 Turbo support?expand_more
Wan 2.2 Turbo supports: Audio Input, Image Input, Aspect Ratio.
How can I generate with Wan 2.2 Turbo?expand_more
Use the Generate composer in your dashboard, or call the API directly with model `wan/2.2-turbo` and type `AUDIO_TO_VIDEO` — see the code example above.