Video models
Wan 2.5
On this page
Wan 2.5 — high-quality AI video generation.
| modelId | wan-2-5-image-to-video |
| Modality | video |
| Pricing | See this model on the Pricing page for the current per-call price (with your markup). |
Operations
| Operation | Endpoint | Description |
|---|---|---|
| Text to video | POST /api/v1/generate | Base generation from a text prompt. |
| Image to video | POST /api/v1/generate | Condition on a reference image — upload it via /api/v1/files/upload and pass the URL. |
| Poll task | GET /api/v1/task/{id}?model=wan-2-5-image-to-video | Retrieve state and result URLs. |
Input parameters
| Field | Type | Required | Values / example |
|---|---|---|---|
| prompt | textarea | required | Describe the video motion you want to create... |
| image_url | image | required | Drag and drop or click to upload your image |
| duration | select | optional | 5, 10 |
| resolution | select | optional | 720p, 1080p |
| negative_prompt | textarea | optional | Describe what you want to avoid in the video... |
| enable_prompt_expansion | select | optional | false, true |
| seed | number | optional | Enter number... |
| nsfw_checker | select | optional | false, true |
Example request
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-5-image-to-video","input":{"prompt":"Animate the still: the chef plates the final course, swirling a ribbon of sauce and setting a single herb leaf with tweezers, steam rising under warm pass lighting, a subtle push-in on the hands.","duration":"5","resolution":"1080p","negative_prompt":"…","enable_prompt_expansion":"true","seed":8,"nsfw_checker":"true"}}'