Skip to content
Docs menu

Video models

Wan 2.5

On this page

Wan 2.5 — high-quality AI video generation.

modelIdwan-2-5-image-to-video
Modalityvideo
PricingSee this model on the Pricing page for the current per-call price (with your markup).

Operations

OperationEndpointDescription
Text to videoPOST /api/v1/generateBase generation from a text prompt.
Image to videoPOST /api/v1/generateCondition on a reference image — upload it via /api/v1/files/upload and pass the URL.
Poll taskGET /api/v1/task/{id}?model=wan-2-5-image-to-videoRetrieve state and result URLs.

Input parameters

FieldTypeRequiredValues / example
prompttextarearequiredDescribe the video motion you want to create...
image_urlimagerequiredDrag and drop or click to upload your image
durationselectoptional5, 10
resolutionselectoptional720p, 1080p
negative_prompttextareaoptionalDescribe what you want to avoid in the video...
enable_prompt_expansionselectoptionalfalse, true
seednumberoptionalEnter number...
nsfw_checkerselectoptionalfalse, 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"}}'