Video models
Wan 2.2 A14B Speech to Video Turbo
On this page
Wan 2.2 A14B Speech to Video Turbo — high-quality AI video generation.
| modelId | wan-2-2-a14b-speech-to-video-turbo |
| 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-2-a14b-speech-to-video-turbo | Retrieve state and result URLs. |
Input parameters
| Field | Type | Required | Values / example |
|---|---|---|---|
| prompt | textarea | required | — |
| image_url | image | required | Drag and drop or click to upload your image |
| audio_url | image | required | Drag and drop or click to upload your audio file |
| num_frames | number | optional | — |
| frames_per_second | number | optional | — |
| resolution | select | optional | 480p, 580p, 720p |
| negative_prompt | text | optional | Enter negative prompt... |
| seed | number | optional | Enter number... |
| num_inference_steps | number | optional | — |
| guidance_scale | number | optional | — |
| shift | number | optional | — |
| enable_safety_checker | select | optional | false, true |
| 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-2-a14b-speech-to-video-turbo","input":{"prompt":"Subtle lifelike motion driven by the audio, gentle natural head movement, soft cinematic lighting, smooth realistic delivery.","num_frames":80,"frames_per_second":16,"resolution":"480p","negative_prompt":"…","seed":8,"num_inference_steps":27,"guidance_scale":3.5,"shift":5,"enable_safety_checker":"true","nsfw_checker":"true"}}'