Wan2.6 Flash

Wan2.6 Flash is a distilled, low-latency variant of the Wan2.6 multimodal video model designed for rapid image to video generation with fluid motion, visual stability, and optional synchronized audio. It produces HD clips from detailed static images while preserving subject structure and motion realism, making it suitable for preview workflows and high-throughput creative pipelines.

API Reference
INTEGRATE
Complete technical specification for integration
RequestResponse
Examples4
CODE
Ready-to-use code snippets for common workflows
Windmill Bakery Rooftop Breakfast
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'alibaba:wan@2.6-flash',
positivePrompt: 'Animate the supplied still image into a gentle, charming morning scene. The windmill blades rotate steadily, tablecloth edges flutter in a light breeze, steam rises from the teapot, flour dust glimmers in the sunbeams, and the small apron-wearing animals make subtle natural motions such as blinking, turning their heads, kneading dough, and arranging pastries. Add drifting clouds over the distant farmland and soft movement in the grass and flowers. Preserve the original composition and subject structure, with stable forms and believable motion, warm wholesome mood, whimsical realism, rich environmental detail.',
negativePrompt: 'camera shake, warped anatomy, extra limbs, sudden motion, heavy blur, flicker, scene changes, text, watermark, oversaturated colors, distorted faces, duplicate subjects',
width: 1280,
height: 720,
duration: 6,
seed: 38852,
providerSettings: {
alibaba: {
promptExtend: false,
audio: true,
shotType: 'single'
}
},
inputs: {
frameImages: [
{
image: 'https://assets.runware.ai/assets/inputs/0283ec6d-bffa-4d4e-963a-9e1d7012806b.jpg'
}
]
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "alibaba:wan@2.6-flash",
"positivePrompt": "Animate the supplied still image into a gentle, charming morning scene. The windmill blades rotate steadily, tablecloth edges flutter in a light breeze, steam rises from the teapot, flour dust glimmers in the sunbeams, and the small apron-wearing animals make subtle natural motions such as blinking, turning their heads, kneading dough, and arranging pastries. Add drifting clouds over the distant farmland and soft movement in the grass and flowers. Preserve the original composition and subject structure, with stable forms and believable motion, warm wholesome mood, whimsical realism, rich environmental detail.",
"negativePrompt": "camera shake, warped anatomy, extra limbs, sudden motion, heavy blur, flicker, scene changes, text, watermark, oversaturated colors, distorted faces, duplicate subjects",
"width": 1280,
"height": 720,
"duration": 6,
"seed": 38852,
"providerSettings": {
"alibaba": {
"promptExtend": False,
"audio": True,
"shotType": "single"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/0283ec6d-bffa-4d4e-963a-9e1d7012806b.jpg"
}
]
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "3c4f7172-e9c3-46f7-9efa-d1c93aafd3cf",
"model": "alibaba:wan@2.6-flash",
"positivePrompt": "Animate the supplied still image into a gentle, charming morning scene. The windmill blades rotate steadily, tablecloth edges flutter in a light breeze, steam rises from the teapot, flour dust glimmers in the sunbeams, and the small apron-wearing animals make subtle natural motions such as blinking, turning their heads, kneading dough, and arranging pastries. Add drifting clouds over the distant farmland and soft movement in the grass and flowers. Preserve the original composition and subject structure, with stable forms and believable motion, warm wholesome mood, whimsical realism, rich environmental detail.",
"negativePrompt": "camera shake, warped anatomy, extra limbs, sudden motion, heavy blur, flicker, scene changes, text, watermark, oversaturated colors, distorted faces, duplicate subjects",
"width": 1280,
"height": 720,
"duration": 6,
"seed": 38852,
"providerSettings": {
"alibaba": {
"promptExtend": false,
"audio": true,
"shotType": "single"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/0283ec6d-bffa-4d4e-963a-9e1d7012806b.jpg"
}
]
}
}
]'runware run alibaba:wan@2.6-flash \
positivePrompt="Animate the supplied still image into a gentle, charming morning scene. The windmill blades rotate steadily, tablecloth edges flutter in a light breeze, steam rises from the teapot, flour dust glimmers in the sunbeams, and the small apron-wearing animals make subtle natural motions such as blinking, turning their heads, kneading dough, and arranging pastries. Add drifting clouds over the distant farmland and soft movement in the grass and flowers. Preserve the original composition and subject structure, with stable forms and believable motion, warm wholesome mood, whimsical realism, rich environmental detail." \
negativePrompt="camera shake, warped anatomy, extra limbs, sudden motion, heavy blur, flicker, scene changes, text, watermark, oversaturated colors, distorted faces, duplicate subjects" \
width=1280 \
height=720 \
duration=6 \
seed=38852 \
providerSettings.alibaba.promptExtend=false \
providerSettings.alibaba.audio=true \
providerSettings.alibaba.shotType=single \
inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/0283ec6d-bffa-4d4e-963a-9e1d7012806b.jpg{
"taskType": "videoInference",
"taskUUID": "3c4f7172-e9c3-46f7-9efa-d1c93aafd3cf",
"model": "alibaba:wan@2.6-flash",
"positivePrompt": "Animate the supplied still image into a gentle, charming morning scene. The windmill blades rotate steadily, tablecloth edges flutter in a light breeze, steam rises from the teapot, flour dust glimmers in the sunbeams, and the small apron-wearing animals make subtle natural motions such as blinking, turning their heads, kneading dough, and arranging pastries. Add drifting clouds over the distant farmland and soft movement in the grass and flowers. Preserve the original composition and subject structure, with stable forms and believable motion, warm wholesome mood, whimsical realism, rich environmental detail.",
"negativePrompt": "camera shake, warped anatomy, extra limbs, sudden motion, heavy blur, flicker, scene changes, text, watermark, oversaturated colors, distorted faces, duplicate subjects",
"width": 1280,
"height": 720,
"duration": 6,
"seed": 38852,
"providerSettings": {
"alibaba": {
"promptExtend": false,
"audio": true,
"shotType": "single"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/0283ec6d-bffa-4d4e-963a-9e1d7012806b.jpg"
}
]
}
}{
"taskType": "videoInference",
"taskUUID": "3c4f7172-e9c3-46f7-9efa-d1c93aafd3cf",
"videoUUID": "ad720b1a-e943-4c7d-a7b9-8480332d4ec2",
"videoURL": "https://vm.runware.ai/video/os/a25d05/ws/5/vi/ad720b1a-e943-4c7d-a7b9-8480332d4ec2.mp4",
"seed": 38852,
"cost": 0.3015
}Stormglass Atelier Window Tableau
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'alibaba:wan@2.6-flash',
positivePrompt: 'Transform the supplied atelier image into a fluid short film with multiple connected shots. Begin with subtle rain movement on the windows and swaying hanging glass ornaments, then shift to close details of trembling reflections across the colored vessels, drifting paper sketches, and the faint orange pulse from the stove. Emphasize realistic motion, coherent camera transitions, delicate highlights refracting through handmade glass, gusts of wind implied through small object movement, and a contemplative handcrafted atmosphere. Keep the room structure and object placement stable while introducing elegant cinematic motion and weather-driven ambience synchronized to the provided audio.',
negativePrompt: 'people entering frame, face closeups, heavy object deformation, melting furniture, flicker, abrupt cuts, chaotic camera shake, oversaturated colors, text, watermark, extra tools appearing, broken anatomy, low detail, cartoon style',
width: 1280,
height: 720,
duration: 7,
seed: 28566,
providerSettings: {
alibaba: {
promptExtend: true,
audio: true,
shotType: 'multi'
}
},
inputs: {
frameImages: [
{
image: 'https://assets.runware.ai/assets/inputs/a7928a5b-0ce6-4480-a0e5-b731ff52721e.jpg',
frame: 'first'
}
],
audio: 'https://assets.runware.ai/assets/inputs/37241565-98e9-47a5-83aa-e40607bcda57.mp3'
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "alibaba:wan@2.6-flash",
"positivePrompt": "Transform the supplied atelier image into a fluid short film with multiple connected shots. Begin with subtle rain movement on the windows and swaying hanging glass ornaments, then shift to close details of trembling reflections across the colored vessels, drifting paper sketches, and the faint orange pulse from the stove. Emphasize realistic motion, coherent camera transitions, delicate highlights refracting through handmade glass, gusts of wind implied through small object movement, and a contemplative handcrafted atmosphere. Keep the room structure and object placement stable while introducing elegant cinematic motion and weather-driven ambience synchronized to the provided audio.",
"negativePrompt": "people entering frame, face closeups, heavy object deformation, melting furniture, flicker, abrupt cuts, chaotic camera shake, oversaturated colors, text, watermark, extra tools appearing, broken anatomy, low detail, cartoon style",
"width": 1280,
"height": 720,
"duration": 7,
"seed": 28566,
"providerSettings": {
"alibaba": {
"promptExtend": True,
"audio": True,
"shotType": "multi"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/a7928a5b-0ce6-4480-a0e5-b731ff52721e.jpg",
"frame": "first"
}
],
"audio": "https://assets.runware.ai/assets/inputs/37241565-98e9-47a5-83aa-e40607bcda57.mp3"
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "57364c19-9dee-443f-a853-e7d0ac4e86ee",
"model": "alibaba:wan@2.6-flash",
"positivePrompt": "Transform the supplied atelier image into a fluid short film with multiple connected shots. Begin with subtle rain movement on the windows and swaying hanging glass ornaments, then shift to close details of trembling reflections across the colored vessels, drifting paper sketches, and the faint orange pulse from the stove. Emphasize realistic motion, coherent camera transitions, delicate highlights refracting through handmade glass, gusts of wind implied through small object movement, and a contemplative handcrafted atmosphere. Keep the room structure and object placement stable while introducing elegant cinematic motion and weather-driven ambience synchronized to the provided audio.",
"negativePrompt": "people entering frame, face closeups, heavy object deformation, melting furniture, flicker, abrupt cuts, chaotic camera shake, oversaturated colors, text, watermark, extra tools appearing, broken anatomy, low detail, cartoon style",
"width": 1280,
"height": 720,
"duration": 7,
"seed": 28566,
"providerSettings": {
"alibaba": {
"promptExtend": true,
"audio": true,
"shotType": "multi"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/a7928a5b-0ce6-4480-a0e5-b731ff52721e.jpg",
"frame": "first"
}
],
"audio": "https://assets.runware.ai/assets/inputs/37241565-98e9-47a5-83aa-e40607bcda57.mp3"
}
}
]'runware run alibaba:wan@2.6-flash \
positivePrompt="Transform the supplied atelier image into a fluid short film with multiple connected shots. Begin with subtle rain movement on the windows and swaying hanging glass ornaments, then shift to close details of trembling reflections across the colored vessels, drifting paper sketches, and the faint orange pulse from the stove. Emphasize realistic motion, coherent camera transitions, delicate highlights refracting through handmade glass, gusts of wind implied through small object movement, and a contemplative handcrafted atmosphere. Keep the room structure and object placement stable while introducing elegant cinematic motion and weather-driven ambience synchronized to the provided audio." \
negativePrompt="people entering frame, face closeups, heavy object deformation, melting furniture, flicker, abrupt cuts, chaotic camera shake, oversaturated colors, text, watermark, extra tools appearing, broken anatomy, low detail, cartoon style" \
width=1280 \
height=720 \
duration=7 \
seed=28566 \
providerSettings.alibaba.promptExtend=true \
providerSettings.alibaba.audio=true \
providerSettings.alibaba.shotType=multi \
inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/a7928a5b-0ce6-4480-a0e5-b731ff52721e.jpg \
inputs.frameImages.0.frame=first \
inputs.audio=https://assets.runware.ai/assets/inputs/37241565-98e9-47a5-83aa-e40607bcda57.mp3{
"taskType": "videoInference",
"taskUUID": "57364c19-9dee-443f-a853-e7d0ac4e86ee",
"model": "alibaba:wan@2.6-flash",
"positivePrompt": "Transform the supplied atelier image into a fluid short film with multiple connected shots. Begin with subtle rain movement on the windows and swaying hanging glass ornaments, then shift to close details of trembling reflections across the colored vessels, drifting paper sketches, and the faint orange pulse from the stove. Emphasize realistic motion, coherent camera transitions, delicate highlights refracting through handmade glass, gusts of wind implied through small object movement, and a contemplative handcrafted atmosphere. Keep the room structure and object placement stable while introducing elegant cinematic motion and weather-driven ambience synchronized to the provided audio.",
"negativePrompt": "people entering frame, face closeups, heavy object deformation, melting furniture, flicker, abrupt cuts, chaotic camera shake, oversaturated colors, text, watermark, extra tools appearing, broken anatomy, low detail, cartoon style",
"width": 1280,
"height": 720,
"duration": 7,
"seed": 28566,
"providerSettings": {
"alibaba": {
"promptExtend": true,
"audio": true,
"shotType": "multi"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/a7928a5b-0ce6-4480-a0e5-b731ff52721e.jpg",
"frame": "first"
}
],
"audio": "https://assets.runware.ai/assets/inputs/37241565-98e9-47a5-83aa-e40607bcda57.mp3"
}
}{
"taskType": "videoInference",
"taskUUID": "57364c19-9dee-443f-a853-e7d0ac4e86ee",
"videoUUID": "1d3e57eb-b95a-4b2a-bdcf-acf5896322dd",
"videoURL": "https://vm.runware.ai/video/os/a17d13/ws/5/vi/1d3e57eb-b95a-4b2a-bdcf-acf5896322dd.mp4",
"seed": 28566,
"cost": 0.3502
}Clockwork Teahouse Rain Atrium
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'alibaba:wan@2.6-flash',
positivePrompt: 'Animate the still image into a gentle continuous scene inside a rain-soaked greenhouse teahouse. Raindrops streak and bead across the glass ceiling, soft ripples spread through shallow puddles on the mosaic floor, steam rises and drifts from the teacups and brass kettles, hanging ferns sway subtly, lantern reflections shimmer on wet tiles, and the white crane makes small natural movements such as blinking, slight head turns, and tiny feather shifts. Preserve the original composition and subject identity with realistic motion, calm atmosphere, and coherent physics. Emphasize fluid camera stability and delicate ambient detail.',
negativePrompt: 'flicker, warped anatomy, sudden camera jumps, duplicated objects, exaggerated motion, blur, low detail, text, watermark, harsh transitions',
width: 1280,
height: 720,
duration: 6,
seed: 21557,
providerSettings: {
alibaba: {
promptExtend: true,
audio: true,
shotType: 'single'
}
},
inputs: {
frameImages: [
{
image: 'https://assets.runware.ai/assets/inputs/b7b6c7db-6f64-4da0-9033-d676078c8020.jpg',
frame: 'first'
}
]
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "alibaba:wan@2.6-flash",
"positivePrompt": "Animate the still image into a gentle continuous scene inside a rain-soaked greenhouse teahouse. Raindrops streak and bead across the glass ceiling, soft ripples spread through shallow puddles on the mosaic floor, steam rises and drifts from the teacups and brass kettles, hanging ferns sway subtly, lantern reflections shimmer on wet tiles, and the white crane makes small natural movements such as blinking, slight head turns, and tiny feather shifts. Preserve the original composition and subject identity with realistic motion, calm atmosphere, and coherent physics. Emphasize fluid camera stability and delicate ambient detail.",
"negativePrompt": "flicker, warped anatomy, sudden camera jumps, duplicated objects, exaggerated motion, blur, low detail, text, watermark, harsh transitions",
"width": 1280,
"height": 720,
"duration": 6,
"seed": 21557,
"providerSettings": {
"alibaba": {
"promptExtend": True,
"audio": True,
"shotType": "single"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/b7b6c7db-6f64-4da0-9033-d676078c8020.jpg",
"frame": "first"
}
]
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "d9eefe6d-dea6-4eeb-ad7c-43315038bccc",
"model": "alibaba:wan@2.6-flash",
"positivePrompt": "Animate the still image into a gentle continuous scene inside a rain-soaked greenhouse teahouse. Raindrops streak and bead across the glass ceiling, soft ripples spread through shallow puddles on the mosaic floor, steam rises and drifts from the teacups and brass kettles, hanging ferns sway subtly, lantern reflections shimmer on wet tiles, and the white crane makes small natural movements such as blinking, slight head turns, and tiny feather shifts. Preserve the original composition and subject identity with realistic motion, calm atmosphere, and coherent physics. Emphasize fluid camera stability and delicate ambient detail.",
"negativePrompt": "flicker, warped anatomy, sudden camera jumps, duplicated objects, exaggerated motion, blur, low detail, text, watermark, harsh transitions",
"width": 1280,
"height": 720,
"duration": 6,
"seed": 21557,
"providerSettings": {
"alibaba": {
"promptExtend": true,
"audio": true,
"shotType": "single"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/b7b6c7db-6f64-4da0-9033-d676078c8020.jpg",
"frame": "first"
}
]
}
}
]'runware run alibaba:wan@2.6-flash \
positivePrompt="Animate the still image into a gentle continuous scene inside a rain-soaked greenhouse teahouse. Raindrops streak and bead across the glass ceiling, soft ripples spread through shallow puddles on the mosaic floor, steam rises and drifts from the teacups and brass kettles, hanging ferns sway subtly, lantern reflections shimmer on wet tiles, and the white crane makes small natural movements such as blinking, slight head turns, and tiny feather shifts. Preserve the original composition and subject identity with realistic motion, calm atmosphere, and coherent physics. Emphasize fluid camera stability and delicate ambient detail." \
negativePrompt="flicker, warped anatomy, sudden camera jumps, duplicated objects, exaggerated motion, blur, low detail, text, watermark, harsh transitions" \
width=1280 \
height=720 \
duration=6 \
seed=21557 \
providerSettings.alibaba.promptExtend=true \
providerSettings.alibaba.audio=true \
providerSettings.alibaba.shotType=single \
inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/b7b6c7db-6f64-4da0-9033-d676078c8020.jpg \
inputs.frameImages.0.frame=first{
"taskType": "videoInference",
"taskUUID": "d9eefe6d-dea6-4eeb-ad7c-43315038bccc",
"model": "alibaba:wan@2.6-flash",
"positivePrompt": "Animate the still image into a gentle continuous scene inside a rain-soaked greenhouse teahouse. Raindrops streak and bead across the glass ceiling, soft ripples spread through shallow puddles on the mosaic floor, steam rises and drifts from the teacups and brass kettles, hanging ferns sway subtly, lantern reflections shimmer on wet tiles, and the white crane makes small natural movements such as blinking, slight head turns, and tiny feather shifts. Preserve the original composition and subject identity with realistic motion, calm atmosphere, and coherent physics. Emphasize fluid camera stability and delicate ambient detail.",
"negativePrompt": "flicker, warped anatomy, sudden camera jumps, duplicated objects, exaggerated motion, blur, low detail, text, watermark, harsh transitions",
"width": 1280,
"height": 720,
"duration": 6,
"seed": 21557,
"providerSettings": {
"alibaba": {
"promptExtend": true,
"audio": true,
"shotType": "single"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/b7b6c7db-6f64-4da0-9033-d676078c8020.jpg",
"frame": "first"
}
]
}
}{
"taskType": "videoInference",
"taskUUID": "d9eefe6d-dea6-4eeb-ad7c-43315038bccc",
"videoUUID": "e57a9658-9493-4b56-b5fb-5742b81e2b76",
"videoURL": "https://vm.runware.ai/video/os/a10d08/ws/5/vi/e57a9658-9493-4b56-b5fb-5742b81e2b76.mp4",
"seed": 21557,
"cost": 0.3015
}Saltwind Violin Cliff Procession
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'alibaba:wan@2.6-flash',
positivePrompt: 'Animate the supplied coastal cliff scene as a fluid continuous shot. The violinist walks carefully forward along the path while bowing the violin, coat tails and hair whipping in strong sea wind. The giant manta-shaped kites pull and sway overhead with believable tether tension, occasionally dipping and catching the air. Grass and wild flowers ripple in layered gusts, gulls wheel in the distance, and the ocean below churns with whitecaps. Subtle camera drift follows the subject from a wide cinematic angle, maintaining composition stability and realistic motion. Sunbeams shift through moving clouds, adding changing highlights across the cliff and sea. Naturalistic, expressive, atmospheric, high detail.',
negativePrompt: 'low detail, jitter, warped anatomy, extra limbs, broken violin, duplicate kites, flicker, oversaturated colors, cartoon look, text, watermark, abrupt cuts, camera shake',
width: 1920,
height: 1080,
duration: 5,
seed: 54612,
providerSettings: {
alibaba: {
promptExtend: true,
audio: false,
shotType: 'single'
}
},
inputs: {
frameImages: [
{
image: 'https://assets.runware.ai/assets/inputs/cd111977-d68f-43c1-aff8-1b55f27b2f41.jpg',
frame: 'first'
}
]
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "alibaba:wan@2.6-flash",
"positivePrompt": "Animate the supplied coastal cliff scene as a fluid continuous shot. The violinist walks carefully forward along the path while bowing the violin, coat tails and hair whipping in strong sea wind. The giant manta-shaped kites pull and sway overhead with believable tether tension, occasionally dipping and catching the air. Grass and wild flowers ripple in layered gusts, gulls wheel in the distance, and the ocean below churns with whitecaps. Subtle camera drift follows the subject from a wide cinematic angle, maintaining composition stability and realistic motion. Sunbeams shift through moving clouds, adding changing highlights across the cliff and sea. Naturalistic, expressive, atmospheric, high detail.",
"negativePrompt": "low detail, jitter, warped anatomy, extra limbs, broken violin, duplicate kites, flicker, oversaturated colors, cartoon look, text, watermark, abrupt cuts, camera shake",
"width": 1920,
"height": 1080,
"duration": 5,
"seed": 54612,
"providerSettings": {
"alibaba": {
"promptExtend": True,
"audio": False,
"shotType": "single"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/cd111977-d68f-43c1-aff8-1b55f27b2f41.jpg",
"frame": "first"
}
]
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "aa65cdd7-7e48-4176-972a-3f8da964cdef",
"model": "alibaba:wan@2.6-flash",
"positivePrompt": "Animate the supplied coastal cliff scene as a fluid continuous shot. The violinist walks carefully forward along the path while bowing the violin, coat tails and hair whipping in strong sea wind. The giant manta-shaped kites pull and sway overhead with believable tether tension, occasionally dipping and catching the air. Grass and wild flowers ripple in layered gusts, gulls wheel in the distance, and the ocean below churns with whitecaps. Subtle camera drift follows the subject from a wide cinematic angle, maintaining composition stability and realistic motion. Sunbeams shift through moving clouds, adding changing highlights across the cliff and sea. Naturalistic, expressive, atmospheric, high detail.",
"negativePrompt": "low detail, jitter, warped anatomy, extra limbs, broken violin, duplicate kites, flicker, oversaturated colors, cartoon look, text, watermark, abrupt cuts, camera shake",
"width": 1920,
"height": 1080,
"duration": 5,
"seed": 54612,
"providerSettings": {
"alibaba": {
"promptExtend": true,
"audio": false,
"shotType": "single"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/cd111977-d68f-43c1-aff8-1b55f27b2f41.jpg",
"frame": "first"
}
]
}
}
]'runware run alibaba:wan@2.6-flash \
positivePrompt="Animate the supplied coastal cliff scene as a fluid continuous shot. The violinist walks carefully forward along the path while bowing the violin, coat tails and hair whipping in strong sea wind. The giant manta-shaped kites pull and sway overhead with believable tether tension, occasionally dipping and catching the air. Grass and wild flowers ripple in layered gusts, gulls wheel in the distance, and the ocean below churns with whitecaps. Subtle camera drift follows the subject from a wide cinematic angle, maintaining composition stability and realistic motion. Sunbeams shift through moving clouds, adding changing highlights across the cliff and sea. Naturalistic, expressive, atmospheric, high detail." \
negativePrompt="low detail, jitter, warped anatomy, extra limbs, broken violin, duplicate kites, flicker, oversaturated colors, cartoon look, text, watermark, abrupt cuts, camera shake" \
width=1920 \
height=1080 \
duration=5 \
seed=54612 \
providerSettings.alibaba.promptExtend=true \
providerSettings.alibaba.audio=false \
providerSettings.alibaba.shotType=single \
inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/cd111977-d68f-43c1-aff8-1b55f27b2f41.jpg \
inputs.frameImages.0.frame=first{
"taskType": "videoInference",
"taskUUID": "aa65cdd7-7e48-4176-972a-3f8da964cdef",
"model": "alibaba:wan@2.6-flash",
"positivePrompt": "Animate the supplied coastal cliff scene as a fluid continuous shot. The violinist walks carefully forward along the path while bowing the violin, coat tails and hair whipping in strong sea wind. The giant manta-shaped kites pull and sway overhead with believable tether tension, occasionally dipping and catching the air. Grass and wild flowers ripple in layered gusts, gulls wheel in the distance, and the ocean below churns with whitecaps. Subtle camera drift follows the subject from a wide cinematic angle, maintaining composition stability and realistic motion. Sunbeams shift through moving clouds, adding changing highlights across the cliff and sea. Naturalistic, expressive, atmospheric, high detail.",
"negativePrompt": "low detail, jitter, warped anatomy, extra limbs, broken violin, duplicate kites, flicker, oversaturated colors, cartoon look, text, watermark, abrupt cuts, camera shake",
"width": 1920,
"height": 1080,
"duration": 5,
"seed": 54612,
"providerSettings": {
"alibaba": {
"promptExtend": true,
"audio": false,
"shotType": "single"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/cd111977-d68f-43c1-aff8-1b55f27b2f41.jpg",
"frame": "first"
}
]
}
}{
"taskType": "videoInference",
"taskUUID": "aa65cdd7-7e48-4176-972a-3f8da964cdef",
"videoUUID": "d5396f8a-478c-4340-8f69-45709af94c82",
"videoURL": "https://vm.runware.ai/video/os/a17d13/ws/5/vi/d5396f8a-478c-4340-8f69-45709af94c82.mp4",
"seed": 54612,
"cost": 0.1875
}