Video models
Wan V2.2 A14B
On this page
Wan V2.2 A14B — high-quality AI video generation.
| modelId | wan-2-2-a14b-text-to-video-turbo, wan-2-2-a14b-image-to-video-turbo |
| Modality | video |
| Pricing | See this model on the Pricing page for the current per-call price (with your markup). |
Operations
| Operation | modelId | Endpoint | Required input |
|---|---|---|---|
| Text To Video Turbo | wan-2-2-a14b-text-to-video-turbo | POST /api/v1/generate | prompt |
| Image To Video Turbo | wan-2-2-a14b-image-to-video-turbo | POST /api/v1/generate | image_url, prompt |
| Poll task | — | GET /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
| Field | Type | Required | Values / example |
|---|---|---|---|
| prompt | string | Yes | The 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.) |
| resolution | string | No | Resolution of the generated video (480p, 580p, or 720p). Default value: "720p" (options: 480p | 720p) (default: 720p) |
| aspect_ratio | string | No | Aspect ratio of the generated video (16:9 or 9:16). Default value: "16:9" (options: 16:9 | 9:16) (default: 16:9) |
| enable_prompt_expansion | boolean | No | Whether 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) |
| seed | number | No | Random seed for reproducibility. If None, a random seed is chosen. (range 0-2147483647) (default: 0) |
| acceleration | string | No | Acceleration 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_checker | boolean | No | A 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
| Field | Type | Required | Values / example |
|---|---|---|---|
| image_url | string | Yes | URL of the input image. If the input image does not match the chosen aspect ratio, it is resized and center cropped. (image URL) |
| prompt | string | Yes | The 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.) |
| resolution | string | No | Resolution of the generated video (480p, 580p, or 720p). Default value: "720p" (options: 480p | 720p) (default: 720p) |
| enable_prompt_expansion | boolean | No | Whether 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) |
| seed | number | No | Random seed for reproducibility. If None, a random seed is chosen. (range 0-2147483647) (default: 0) |
| acceleration | string | No | Acceleration 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_checker | boolean | No | A 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}}'