Text-to-video with cinematic quality, stable motion, and strong instruction-following.
WAN 2.6 Text-to-Video turns plain prompts into coherent, cinematic clips with crisp detail, stable motion, and strong instruction-following. It supports multiple resolutions and durations up to 15 seconds.
curl -X POST "https://api.runpod.ai/v2/wan-2-6-t2v/runsync" \ -H "Authorization: Bearer $RUNPOD_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "input": { "prompt": "A golden retriever running through a field of sunflowers at sunset", "duration": 5, "size": "1280*720", "seed": -1, "enable_prompt_expansion": false } }'
import requestsresponse = requests.post( "https://api.runpod.ai/v2/wan-2-6-t2v/runsync", headers={ "Authorization": f"Bearer {RUNPOD_API_KEY}", "Content-Type": "application/json", }, json={ "input": { "prompt": "A golden retriever running through a field of sunflowers at sunset", "duration": 5, "size": "1280*720", "seed": -1, "enable_prompt_expansion": False, } },)result = response.json()print(result["output"]["video_url"])
const response = await fetch( "https://api.runpod.ai/v2/wan-2-6-t2v/runsync", { method: "POST", headers: { Authorization: `Bearer ${RUNPOD_API_KEY}`, "Content-Type": "application/json", }, body: JSON.stringify({ input: { prompt: "A golden retriever running through a field of sunflowers at sunset", duration: 5, size: "1280*720", seed: -1, enable_prompt_expansion: false, }, }), });const result = await response.json();console.log(result.output.video_url);
curl -X POST "https://api.runpod.ai/v2/wan-2-6-t2v/runsync" \ -H "Authorization: Bearer $RUNPOD_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "input": { "prompt": "A golden retriever running through a field of sunflowers at sunset", "duration": 5, "size": "1280*720", "seed": -1, "enable_prompt_expansion": false } }'
import requestsresponse = requests.post( "https://api.runpod.ai/v2/wan-2-6-t2v/runsync", headers={ "Authorization": f"Bearer {RUNPOD_API_KEY}", "Content-Type": "application/json", }, json={ "input": { "prompt": "A golden retriever running through a field of sunflowers at sunset", "duration": 5, "size": "1280*720", "seed": -1, "enable_prompt_expansion": False, } },)result = response.json()print(result["output"]["video_url"])
const response = await fetch( "https://api.runpod.ai/v2/wan-2-6-t2v/runsync", { method: "POST", headers: { Authorization: `Bearer ${RUNPOD_API_KEY}`, "Content-Type": "application/json", }, body: JSON.stringify({ input: { prompt: "A golden retriever running through a field of sunflowers at sunset", duration: 5, size: "1280*720", seed: -1, enable_prompt_expansion: false, }, }), });const result = await response.json();console.log(result.output.video_url);