Skip to content
Docs menu

Video models

Wan V2.2 A14B

On this page

Wan V2.2 A14B — high-quality AI video generation.

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

Operations

OperationmodelIdEndpointRequired input
Text To Video Turbowan-2-2-a14b-text-to-video-turboPOST /api/v1/generateprompt
Image To Video Turbowan-2-2-a14b-image-to-video-turboPOST /api/v1/generateimage_url, prompt
Poll taskGET /api/v1/task/{id}?model=wan-2-2-a14b-text-to-video-turbo

Text To Video Turbo — wan-2-2-a14b-text-to-video-turbo

FieldTypeRequiredValues / example
promptstringYesThe text prompt to guide video generation. Max 5000 characters. (default: A lone lighthouse keeper climbs a spiral staircase at first light, warm lamplight flickering across weathered stone as gulls wheel past the tall windows; a slow upward tracking shot with soft film grain.)
resolutionstringNoResolution of the generated video (480p, 580p, or 720p). Default value: "720p" (options: 480p | 720p) (default: 720p)
aspect_ratiostringNoAspect ratio of the generated video (16:9 or 9:16). Default value: "16:9" (options: 16:9 | 9:16) (default: 16:9)
enable_prompt_expansionbooleanNoWhether to enable prompt expansion. This will use a large language model to expand the prompt with additional details while maintaining the original meaning. (true/false) (default: false)
seednumberNoRandom seed for reproducibility. If None, a random seed is chosen. (range 0-2147483647) (default: 0)
accelerationstringNoAcceleration level to use. The more acceleration, the faster the generation, but with lower quality. The recommended value is 'none'. Default value: "none" (options: none | regular) (default: none)
nsfw_checkerbooleanNoA configurable parameter. Defaults to true in the Playground. (true/false) (default: true)
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-2-a14b-text-to-video-turbo","input":{"prompt":"A cinematic aerial shot of a coastal town at golden hour, gentle waves rolling onto the shore, warm light, slow camera push-in.","resolution":"720p","aspect_ratio":"16:9","enable_prompt_expansion":false,"seed":0,"acceleration":"none","nsfw_checker":true}}'

Image To Video Turbo — wan-2-2-a14b-image-to-video-turbo

FieldTypeRequiredValues / example
image_urlstringYesURL of the input image. If the input image does not match the chosen aspect ratio, it is resized and center cropped. (image URL)
promptstringYesThe text prompt to guide video generation. Max 5000 characters. (default: Animate the frame: a slow parallax drift as the little paper city unfolds and refolds like origami breathing, tiny lantern windows blinking on one by one across the violet twilight.)
resolutionstringNoResolution of the generated video (480p, 580p, or 720p). Default value: "720p" (options: 480p | 720p) (default: 720p)
enable_prompt_expansionbooleanNoWhether to enable prompt expansion. This will use a large language model to expand the prompt with additional details while maintaining the original meaning. (true/false) (default: false)
seednumberNoRandom seed for reproducibility. If None, a random seed is chosen. (range 0-2147483647) (default: 0)
accelerationstringNoAcceleration level to use. The more acceleration, the faster the generation, but with lower quality. The recommended value is 'none'. Default value: "none" (options: none | regular) (default: none)
nsfw_checkerbooleanNoA configurable parameter. Defaults to true in the Playground. (true/false) (default: true)
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-2-a14b-image-to-video-turbo","input":{"image_url":"https://example.com/input.jpg","prompt":"A cinematic aerial shot of a coastal town at golden hour, gentle waves rolling onto the shore, warm light, slow camera push-in.","resolution":"720p","enable_prompt_expansion":false,"seed":0,"acceleration":"none","nsfw_checker":true}}'