Qwen

Wan 2.5

Image
Not available
Generate Now

Wan 2.5 image-to-video generation.

Type
Image to Video
Billed
per sec
Provider
Wan

Pricing

/ sec
Default$0.18 / sec

Default duration: 5s

Supported parameters

modelSettings
  • Promptprompt
  • Image Inputimage_input
  • Aspect Ratioaspect_ratio
  • Durationduration

Code examples

POST /v1/generations

Generations 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",
        "prompt": "A serene mountain landscape at sunset",
        "model": "wan/2.5",
        "modelSettings": {
            "aspect_ratio": "16:9",
            "duration": "5"
        }
    },
)
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.5 billed on ModelStack?expand_more
Wan 2.5 (Image to Video) is billed at a flat, prepaid rate of $0.90 / vid — generation pricing has no tier-based discounts. Final request costs are available in the console.
What other generation types does Wan 2.5 support?expand_more
Besides Image to Video, Wan 2.5 also supports: Text to Video.
Which parameters does Wan 2.5 support?expand_more
Wan 2.5 supports: Prompt, Image Input, Aspect Ratio, Duration.
How can I generate with Wan 2.5?expand_more
Use the Generate composer in your dashboard, or call the API directly with model `wan/2.5` and type `IMAGE_TO_VIDEO` — see the code example above.