PixVerse V4

PixVerse V4 is a generative video model for text prompts or source images. It improves motion quality and complex camera movement. It adds motion modes, sound effect sync, and style transfer. Ideal for short cinematic clips and rapid creative iteration in production pipelines.

API Reference
INTEGRATE
Complete technical specification for integration
RequestResponse
Examples4
CODE
Ready-to-use code snippets for common workflows
text-to-video
Optical Glass Sorting B-Roll$0.299~49simport { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'pixverse:1@2',
positivePrompt: 'Photorealistic industrial b-roll inside a modern glass-recycling facility. Begin with a low, close tracking view of clear, aqua, and amber glass cullet racing along a vibrating stainless-steel conveyor from left to right. Bright fragments tumble, bounce, and catch crisp highlights beneath cool white inspection lights. The camera performs a rapid whip pan to the right, landing cleanly on an optical sorting machine as synchronized compressed-air jets fire in quick succession, precisely knocking amber pieces into a separate chute while clear glass continues forward. Energetic mechanical motion, believable material physics, clean contemporary equipment, subtle airborne dust sparkling in backlight, cool cyan and steel palette with amber accents. Single continuous five-second shot, sharp commercial documentary cinematography, controlled motion blur during the pan, stable focus after landing, 16:9 landscape composition, no workers, no logos, no text.',
negativePrompt: 'cartoon, fantasy machinery, explosions, excessive sparks, broken camera, shaky footage, warped conveyor, melting glass, floating fragments, duplicate equipment, illegible signage, captions, watermark, logo',
width: 1280,
height: 720,
duration: 5,
providerSettings: {
pixverse: {
cameraMovement: 'whip_pan',
motionMode: 'fast'
}
}
})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": "pixverse:1@2",
"positivePrompt": "Photorealistic industrial b-roll inside a modern glass-recycling facility. Begin with a low, close tracking view of clear, aqua, and amber glass cullet racing along a vibrating stainless-steel conveyor from left to right. Bright fragments tumble, bounce, and catch crisp highlights beneath cool white inspection lights. The camera performs a rapid whip pan to the right, landing cleanly on an optical sorting machine as synchronized compressed-air jets fire in quick succession, precisely knocking amber pieces into a separate chute while clear glass continues forward. Energetic mechanical motion, believable material physics, clean contemporary equipment, subtle airborne dust sparkling in backlight, cool cyan and steel palette with amber accents. Single continuous five-second shot, sharp commercial documentary cinematography, controlled motion blur during the pan, stable focus after landing, 16:9 landscape composition, no workers, no logos, no text.",
"negativePrompt": "cartoon, fantasy machinery, explosions, excessive sparks, broken camera, shaky footage, warped conveyor, melting glass, floating fragments, duplicate equipment, illegible signage, captions, watermark, logo",
"width": 1280,
"height": 720,
"duration": 5,
"providerSettings": {
"pixverse": {
"cameraMovement": "whip_pan",
"motionMode": "fast"
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "7428c69b-465c-4763-94b7-e1b4662f8a73",
"model": "pixverse:1@2",
"positivePrompt": "Photorealistic industrial b-roll inside a modern glass-recycling facility. Begin with a low, close tracking view of clear, aqua, and amber glass cullet racing along a vibrating stainless-steel conveyor from left to right. Bright fragments tumble, bounce, and catch crisp highlights beneath cool white inspection lights. The camera performs a rapid whip pan to the right, landing cleanly on an optical sorting machine as synchronized compressed-air jets fire in quick succession, precisely knocking amber pieces into a separate chute while clear glass continues forward. Energetic mechanical motion, believable material physics, clean contemporary equipment, subtle airborne dust sparkling in backlight, cool cyan and steel palette with amber accents. Single continuous five-second shot, sharp commercial documentary cinematography, controlled motion blur during the pan, stable focus after landing, 16:9 landscape composition, no workers, no logos, no text.",
"negativePrompt": "cartoon, fantasy machinery, explosions, excessive sparks, broken camera, shaky footage, warped conveyor, melting glass, floating fragments, duplicate equipment, illegible signage, captions, watermark, logo",
"width": 1280,
"height": 720,
"duration": 5,
"providerSettings": {
"pixverse": {
"cameraMovement": "whip_pan",
"motionMode": "fast"
}
}
}
]'runware run pixverse:1@2 \
positivePrompt="Photorealistic industrial b-roll inside a modern glass-recycling facility. Begin with a low, close tracking view of clear, aqua, and amber glass cullet racing along a vibrating stainless-steel conveyor from left to right. Bright fragments tumble, bounce, and catch crisp highlights beneath cool white inspection lights. The camera performs a rapid whip pan to the right, landing cleanly on an optical sorting machine as synchronized compressed-air jets fire in quick succession, precisely knocking amber pieces into a separate chute while clear glass continues forward. Energetic mechanical motion, believable material physics, clean contemporary equipment, subtle airborne dust sparkling in backlight, cool cyan and steel palette with amber accents. Single continuous five-second shot, sharp commercial documentary cinematography, controlled motion blur during the pan, stable focus after landing, 16:9 landscape composition, no workers, no logos, no text." \
negativePrompt="cartoon, fantasy machinery, explosions, excessive sparks, broken camera, shaky footage, warped conveyor, melting glass, floating fragments, duplicate equipment, illegible signage, captions, watermark, logo" \
width=1280 \
height=720 \
duration=5 \
providerSettings.pixverse.cameraMovement=whip_pan \
providerSettings.pixverse.motionMode=fast{
"taskType": "videoInference",
"taskUUID": "7428c69b-465c-4763-94b7-e1b4662f8a73",
"model": "pixverse:1@2",
"positivePrompt": "Photorealistic industrial b-roll inside a modern glass-recycling facility. Begin with a low, close tracking view of clear, aqua, and amber glass cullet racing along a vibrating stainless-steel conveyor from left to right. Bright fragments tumble, bounce, and catch crisp highlights beneath cool white inspection lights. The camera performs a rapid whip pan to the right, landing cleanly on an optical sorting machine as synchronized compressed-air jets fire in quick succession, precisely knocking amber pieces into a separate chute while clear glass continues forward. Energetic mechanical motion, believable material physics, clean contemporary equipment, subtle airborne dust sparkling in backlight, cool cyan and steel palette with amber accents. Single continuous five-second shot, sharp commercial documentary cinematography, controlled motion blur during the pan, stable focus after landing, 16:9 landscape composition, no workers, no logos, no text.",
"negativePrompt": "cartoon, fantasy machinery, explosions, excessive sparks, broken camera, shaky footage, warped conveyor, melting glass, floating fragments, duplicate equipment, illegible signage, captions, watermark, logo",
"width": 1280,
"height": 720,
"duration": 5,
"providerSettings": {
"pixverse": {
"cameraMovement": "whip_pan",
"motionMode": "fast"
}
}
}Response
{
"taskType": "videoInference",
"taskUUID": "7428c69b-465c-4763-94b7-e1b4662f8a73",
"videoUUID": "2de7e546-631d-4226-a0fb-b537db04fea7",
"videoURL": "https://vm.runware.ai/video/os/a05d22/ws/5/vi/2de7e546-631d-4226-a0fb-b537db04fea7.mp4",
"seed": 1144866258,
"cost": 0.299
}first-frame
Mobile Planetarium Social Media Reel$0.299~1m 0simport { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'pixverse:1@2',
positivePrompt: 'Continue seamlessly from the supplied first frame as a polished vertical social media reel for a mobile planetarium service. Preserve the matte-black inflatable dome, its shape and fabric texture, the school gym, and each child\'s appearance and clothing. The children take a few eager steps toward the dome. The circular entrance flap gently parts and rich indigo light spills across the polished floor; tiny projected stars become visible inside without altering the dome exterior. The camera glides forward at child height, following their approach while keeping the full curved dome recognizable. The children lean toward the glowing entrance as a vivid spiral galaxy slowly turns within, creating an immediate sense of discovery. Natural body motion, subtle fabric movement, realistic light reflections, smooth cinematic movement, premium educational campaign photography, deep black, indigo, cobalt and warm amber palette, no cuts, no text, no logos, no interface elements.',
resolution: '1080p',
duration: 5,
providerSettings: {
pixverse: {
style: 'cyberpunk'
}
},
inputs: {
frameImages: [
{
image: 'https://assets.runware.ai/assets/inputs/ebce25cb-cf63-412d-b724-83d9e1756513.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": "pixverse:1@2",
"positivePrompt": "Continue seamlessly from the supplied first frame as a polished vertical social media reel for a mobile planetarium service. Preserve the matte-black inflatable dome, its shape and fabric texture, the school gym, and each child's appearance and clothing. The children take a few eager steps toward the dome. The circular entrance flap gently parts and rich indigo light spills across the polished floor; tiny projected stars become visible inside without altering the dome exterior. The camera glides forward at child height, following their approach while keeping the full curved dome recognizable. The children lean toward the glowing entrance as a vivid spiral galaxy slowly turns within, creating an immediate sense of discovery. Natural body motion, subtle fabric movement, realistic light reflections, smooth cinematic movement, premium educational campaign photography, deep black, indigo, cobalt and warm amber palette, no cuts, no text, no logos, no interface elements.",
"resolution": "1080p",
"duration": 5,
"providerSettings": {
"pixverse": {
"style": "cyberpunk"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/ebce25cb-cf63-412d-b724-83d9e1756513.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": "4f616066-bda8-4f68-95b2-4c2c941f6633",
"model": "pixverse:1@2",
"positivePrompt": "Continue seamlessly from the supplied first frame as a polished vertical social media reel for a mobile planetarium service. Preserve the matte-black inflatable dome, its shape and fabric texture, the school gym, and each child's appearance and clothing. The children take a few eager steps toward the dome. The circular entrance flap gently parts and rich indigo light spills across the polished floor; tiny projected stars become visible inside without altering the dome exterior. The camera glides forward at child height, following their approach while keeping the full curved dome recognizable. The children lean toward the glowing entrance as a vivid spiral galaxy slowly turns within, creating an immediate sense of discovery. Natural body motion, subtle fabric movement, realistic light reflections, smooth cinematic movement, premium educational campaign photography, deep black, indigo, cobalt and warm amber palette, no cuts, no text, no logos, no interface elements.",
"resolution": "1080p",
"duration": 5,
"providerSettings": {
"pixverse": {
"style": "cyberpunk"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/ebce25cb-cf63-412d-b724-83d9e1756513.jpg",
"frame": "first"
}
]
}
}
]'runware run pixverse:1@2 \
positivePrompt="Continue seamlessly from the supplied first frame as a polished vertical social media reel for a mobile planetarium service. Preserve the matte-black inflatable dome, its shape and fabric texture, the school gym, and each child's appearance and clothing. The children take a few eager steps toward the dome. The circular entrance flap gently parts and rich indigo light spills across the polished floor; tiny projected stars become visible inside without altering the dome exterior. The camera glides forward at child height, following their approach while keeping the full curved dome recognizable. The children lean toward the glowing entrance as a vivid spiral galaxy slowly turns within, creating an immediate sense of discovery. Natural body motion, subtle fabric movement, realistic light reflections, smooth cinematic movement, premium educational campaign photography, deep black, indigo, cobalt and warm amber palette, no cuts, no text, no logos, no interface elements." \
resolution=1080p \
duration=5 \
providerSettings.pixverse.style=cyberpunk \
inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/ebce25cb-cf63-412d-b724-83d9e1756513.jpg \
inputs.frameImages.0.frame=first{
"taskType": "videoInference",
"taskUUID": "4f616066-bda8-4f68-95b2-4c2c941f6633",
"model": "pixverse:1@2",
"positivePrompt": "Continue seamlessly from the supplied first frame as a polished vertical social media reel for a mobile planetarium service. Preserve the matte-black inflatable dome, its shape and fabric texture, the school gym, and each child's appearance and clothing. The children take a few eager steps toward the dome. The circular entrance flap gently parts and rich indigo light spills across the polished floor; tiny projected stars become visible inside without altering the dome exterior. The camera glides forward at child height, following their approach while keeping the full curved dome recognizable. The children lean toward the glowing entrance as a vivid spiral galaxy slowly turns within, creating an immediate sense of discovery. Natural body motion, subtle fabric movement, realistic light reflections, smooth cinematic movement, premium educational campaign photography, deep black, indigo, cobalt and warm amber palette, no cuts, no text, no logos, no interface elements.",
"resolution": "1080p",
"duration": 5,
"providerSettings": {
"pixverse": {
"style": "cyberpunk"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/ebce25cb-cf63-412d-b724-83d9e1756513.jpg",
"frame": "first"
}
]
}
}Response
{
"taskType": "videoInference",
"taskUUID": "4f616066-bda8-4f68-95b2-4c2c941f6633",
"videoUUID": "338da37d-0ef1-47f4-9132-d8aaac9991ed",
"videoURL": "https://vm.runware.ai/video/os/a03d21/ws/5/vi/338da37d-0ef1-47f4-9132-d8aaac9991ed.mp4",
"seed": 368663539,
"cost": 0.299
}first-last-frame
Geothermal Utility Logo Reveal$0.299~39simport { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'pixverse:1@2',
positivePrompt: 'Create a precise eight-second animated logo reveal transitioning continuously from the supplied first frame to the supplied last frame. Keep the centered geothermal emblem, pale sulfur-yellow background, flat vector geometry, screen-printed texture, scale, and locked frontal composition consistent. Begin with the three black contour rings tightly nested around the lilac borehole core and coral heat dot. The dot gives one restrained pulse; that pulse travels outward through each ring in sequence. The rings elastically expand into their final evenly spaced positions while remaining perfectly circular and centered. As the energy returns toward the core, two coral thermal waves grow upward in mirrored arcs, settling into the exact final logo configuration. Use smooth premium motion-design timing, subtle overshoot, clean shape morphing, and crisp edges. No camera movement, cuts, particles, shadows, extra objects, lettering, or changes to the background. Finish still and precisely aligned with the supplied last frame.',
resolution: '720p',
duration: 8,
providerSettings: {
pixverse: {
cameraMovement: 'smooth_zoom_in'
}
},
inputs: {
frameImages: [
{
image: 'https://assets.runware.ai/assets/inputs/89cc700d-425a-48bb-b7c6-c1aea55eaa37.jpg',
frame: 'first'
},
{
image: 'https://assets.runware.ai/assets/inputs/6be54030-7209-4a21-af70-f5f136cb225c.jpg',
frame: 'last'
}
]
}
})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": "pixverse:1@2",
"positivePrompt": "Create a precise eight-second animated logo reveal transitioning continuously from the supplied first frame to the supplied last frame. Keep the centered geothermal emblem, pale sulfur-yellow background, flat vector geometry, screen-printed texture, scale, and locked frontal composition consistent. Begin with the three black contour rings tightly nested around the lilac borehole core and coral heat dot. The dot gives one restrained pulse; that pulse travels outward through each ring in sequence. The rings elastically expand into their final evenly spaced positions while remaining perfectly circular and centered. As the energy returns toward the core, two coral thermal waves grow upward in mirrored arcs, settling into the exact final logo configuration. Use smooth premium motion-design timing, subtle overshoot, clean shape morphing, and crisp edges. No camera movement, cuts, particles, shadows, extra objects, lettering, or changes to the background. Finish still and precisely aligned with the supplied last frame.",
"resolution": "720p",
"duration": 8,
"providerSettings": {
"pixverse": {
"cameraMovement": "smooth_zoom_in"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/89cc700d-425a-48bb-b7c6-c1aea55eaa37.jpg",
"frame": "first"
},
{
"image": "https://assets.runware.ai/assets/inputs/6be54030-7209-4a21-af70-f5f136cb225c.jpg",
"frame": "last"
}
]
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "82e91aa9-d5da-4cd5-a4f5-69cabf77dea2",
"model": "pixverse:1@2",
"positivePrompt": "Create a precise eight-second animated logo reveal transitioning continuously from the supplied first frame to the supplied last frame. Keep the centered geothermal emblem, pale sulfur-yellow background, flat vector geometry, screen-printed texture, scale, and locked frontal composition consistent. Begin with the three black contour rings tightly nested around the lilac borehole core and coral heat dot. The dot gives one restrained pulse; that pulse travels outward through each ring in sequence. The rings elastically expand into their final evenly spaced positions while remaining perfectly circular and centered. As the energy returns toward the core, two coral thermal waves grow upward in mirrored arcs, settling into the exact final logo configuration. Use smooth premium motion-design timing, subtle overshoot, clean shape morphing, and crisp edges. No camera movement, cuts, particles, shadows, extra objects, lettering, or changes to the background. Finish still and precisely aligned with the supplied last frame.",
"resolution": "720p",
"duration": 8,
"providerSettings": {
"pixverse": {
"cameraMovement": "smooth_zoom_in"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/89cc700d-425a-48bb-b7c6-c1aea55eaa37.jpg",
"frame": "first"
},
{
"image": "https://assets.runware.ai/assets/inputs/6be54030-7209-4a21-af70-f5f136cb225c.jpg",
"frame": "last"
}
]
}
}
]'runware run pixverse:1@2 \
positivePrompt="Create a precise eight-second animated logo reveal transitioning continuously from the supplied first frame to the supplied last frame. Keep the centered geothermal emblem, pale sulfur-yellow background, flat vector geometry, screen-printed texture, scale, and locked frontal composition consistent. Begin with the three black contour rings tightly nested around the lilac borehole core and coral heat dot. The dot gives one restrained pulse; that pulse travels outward through each ring in sequence. The rings elastically expand into their final evenly spaced positions while remaining perfectly circular and centered. As the energy returns toward the core, two coral thermal waves grow upward in mirrored arcs, settling into the exact final logo configuration. Use smooth premium motion-design timing, subtle overshoot, clean shape morphing, and crisp edges. No camera movement, cuts, particles, shadows, extra objects, lettering, or changes to the background. Finish still and precisely aligned with the supplied last frame." \
resolution=720p \
duration=8 \
providerSettings.pixverse.cameraMovement=smooth_zoom_in \
inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/89cc700d-425a-48bb-b7c6-c1aea55eaa37.jpg \
inputs.frameImages.0.frame=first \
inputs.frameImages.1.image=https://assets.runware.ai/assets/inputs/6be54030-7209-4a21-af70-f5f136cb225c.jpg \
inputs.frameImages.1.frame=last{
"taskType": "videoInference",
"taskUUID": "82e91aa9-d5da-4cd5-a4f5-69cabf77dea2",
"model": "pixverse:1@2",
"positivePrompt": "Create a precise eight-second animated logo reveal transitioning continuously from the supplied first frame to the supplied last frame. Keep the centered geothermal emblem, pale sulfur-yellow background, flat vector geometry, screen-printed texture, scale, and locked frontal composition consistent. Begin with the three black contour rings tightly nested around the lilac borehole core and coral heat dot. The dot gives one restrained pulse; that pulse travels outward through each ring in sequence. The rings elastically expand into their final evenly spaced positions while remaining perfectly circular and centered. As the energy returns toward the core, two coral thermal waves grow upward in mirrored arcs, settling into the exact final logo configuration. Use smooth premium motion-design timing, subtle overshoot, clean shape morphing, and crisp edges. No camera movement, cuts, particles, shadows, extra objects, lettering, or changes to the background. Finish still and precisely aligned with the supplied last frame.",
"resolution": "720p",
"duration": 8,
"providerSettings": {
"pixverse": {
"cameraMovement": "smooth_zoom_in"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/89cc700d-425a-48bb-b7c6-c1aea55eaa37.jpg",
"frame": "first"
},
{
"image": "https://assets.runware.ai/assets/inputs/6be54030-7209-4a21-af70-f5f136cb225c.jpg",
"frame": "last"
}
]
}
}Response
{
"taskType": "videoInference",
"taskUUID": "82e91aa9-d5da-4cd5-a4f5-69cabf77dea2",
"videoUUID": "f1989d8e-fc6e-4f25-80c2-64e93b4ebc54",
"videoURL": "https://vm.runware.ai/video/os/a03d21/ws/5/vi/f1989d8e-fc6e-4f25-80c2-64e93b4ebc54.mp4",
"seed": 2045850380,
"cost": 0.299
}visual-effect
Mushroom Farm Open-House Reel$0.112~1m 21simport { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'pixverse:1@2',
positivePrompt: 'Create a polished vertical social reel from the supplied first frame. The same mushroom grower begins an upbeat, playful dance transformation in the center aisle, executing broad rhythmic arm gestures, light side steps, and a confident final pose. Keep her facial identity, yellow coveralls, coral cap, cobalt boots, body proportions, and full-body visibility consistent throughout. Preserve the real indoor mushroom farm: orderly shelving, pink and pearl oyster mushroom clusters, pale-aqua walls, cyan overhead illumination, and coral accents. Her limbs remain unobstructed and anatomically coherent as she moves within the open floor space. The mushrooms sway only slightly from the movement of air. Energetic commercial pacing, joyful and welcoming mood, vibrant editorial documentary look, stable exposure, crisp product-friendly detail, camera centered with a subtle smooth push-in. No cuts, no additional people, no captions, no logos, no interface elements.',
negativePrompt: 'cropped feet, cropped hands, hidden limbs, extra limbs, fused fingers, distorted face, identity change, wardrobe change, duplicate person, background replacement, collapsing shelves, flying mushrooms, text, subtitles, logo, watermark, app interface',
resolution: '540p',
duration: 5,
providerSettings: {
pixverse: {
effect: 'skeleton dance'
}
},
inputs: {
frameImages: [
{
image: 'https://assets.runware.ai/assets/inputs/23cd8d90-2962-43b4-a5d8-47da2ff61393.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": "pixverse:1@2",
"positivePrompt": "Create a polished vertical social reel from the supplied first frame. The same mushroom grower begins an upbeat, playful dance transformation in the center aisle, executing broad rhythmic arm gestures, light side steps, and a confident final pose. Keep her facial identity, yellow coveralls, coral cap, cobalt boots, body proportions, and full-body visibility consistent throughout. Preserve the real indoor mushroom farm: orderly shelving, pink and pearl oyster mushroom clusters, pale-aqua walls, cyan overhead illumination, and coral accents. Her limbs remain unobstructed and anatomically coherent as she moves within the open floor space. The mushrooms sway only slightly from the movement of air. Energetic commercial pacing, joyful and welcoming mood, vibrant editorial documentary look, stable exposure, crisp product-friendly detail, camera centered with a subtle smooth push-in. No cuts, no additional people, no captions, no logos, no interface elements.",
"negativePrompt": "cropped feet, cropped hands, hidden limbs, extra limbs, fused fingers, distorted face, identity change, wardrobe change, duplicate person, background replacement, collapsing shelves, flying mushrooms, text, subtitles, logo, watermark, app interface",
"resolution": "540p",
"duration": 5,
"providerSettings": {
"pixverse": {
"effect": "skeleton dance"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/23cd8d90-2962-43b4-a5d8-47da2ff61393.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": "1588e988-ff12-41f9-9421-97715e0cd47b",
"model": "pixverse:1@2",
"positivePrompt": "Create a polished vertical social reel from the supplied first frame. The same mushroom grower begins an upbeat, playful dance transformation in the center aisle, executing broad rhythmic arm gestures, light side steps, and a confident final pose. Keep her facial identity, yellow coveralls, coral cap, cobalt boots, body proportions, and full-body visibility consistent throughout. Preserve the real indoor mushroom farm: orderly shelving, pink and pearl oyster mushroom clusters, pale-aqua walls, cyan overhead illumination, and coral accents. Her limbs remain unobstructed and anatomically coherent as she moves within the open floor space. The mushrooms sway only slightly from the movement of air. Energetic commercial pacing, joyful and welcoming mood, vibrant editorial documentary look, stable exposure, crisp product-friendly detail, camera centered with a subtle smooth push-in. No cuts, no additional people, no captions, no logos, no interface elements.",
"negativePrompt": "cropped feet, cropped hands, hidden limbs, extra limbs, fused fingers, distorted face, identity change, wardrobe change, duplicate person, background replacement, collapsing shelves, flying mushrooms, text, subtitles, logo, watermark, app interface",
"resolution": "540p",
"duration": 5,
"providerSettings": {
"pixverse": {
"effect": "skeleton dance"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/23cd8d90-2962-43b4-a5d8-47da2ff61393.jpg",
"frame": "first"
}
]
}
}
]'runware run pixverse:1@2 \
positivePrompt="Create a polished vertical social reel from the supplied first frame. The same mushroom grower begins an upbeat, playful dance transformation in the center aisle, executing broad rhythmic arm gestures, light side steps, and a confident final pose. Keep her facial identity, yellow coveralls, coral cap, cobalt boots, body proportions, and full-body visibility consistent throughout. Preserve the real indoor mushroom farm: orderly shelving, pink and pearl oyster mushroom clusters, pale-aqua walls, cyan overhead illumination, and coral accents. Her limbs remain unobstructed and anatomically coherent as she moves within the open floor space. The mushrooms sway only slightly from the movement of air. Energetic commercial pacing, joyful and welcoming mood, vibrant editorial documentary look, stable exposure, crisp product-friendly detail, camera centered with a subtle smooth push-in. No cuts, no additional people, no captions, no logos, no interface elements." \
negativePrompt="cropped feet, cropped hands, hidden limbs, extra limbs, fused fingers, distorted face, identity change, wardrobe change, duplicate person, background replacement, collapsing shelves, flying mushrooms, text, subtitles, logo, watermark, app interface" \
resolution=540p \
duration=5 \
providerSettings.pixverse.effect="skeleton dance" \
inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/23cd8d90-2962-43b4-a5d8-47da2ff61393.jpg \
inputs.frameImages.0.frame=first{
"taskType": "videoInference",
"taskUUID": "1588e988-ff12-41f9-9421-97715e0cd47b",
"model": "pixverse:1@2",
"positivePrompt": "Create a polished vertical social reel from the supplied first frame. The same mushroom grower begins an upbeat, playful dance transformation in the center aisle, executing broad rhythmic arm gestures, light side steps, and a confident final pose. Keep her facial identity, yellow coveralls, coral cap, cobalt boots, body proportions, and full-body visibility consistent throughout. Preserve the real indoor mushroom farm: orderly shelving, pink and pearl oyster mushroom clusters, pale-aqua walls, cyan overhead illumination, and coral accents. Her limbs remain unobstructed and anatomically coherent as she moves within the open floor space. The mushrooms sway only slightly from the movement of air. Energetic commercial pacing, joyful and welcoming mood, vibrant editorial documentary look, stable exposure, crisp product-friendly detail, camera centered with a subtle smooth push-in. No cuts, no additional people, no captions, no logos, no interface elements.",
"negativePrompt": "cropped feet, cropped hands, hidden limbs, extra limbs, fused fingers, distorted face, identity change, wardrobe change, duplicate person, background replacement, collapsing shelves, flying mushrooms, text, subtitles, logo, watermark, app interface",
"resolution": "540p",
"duration": 5,
"providerSettings": {
"pixverse": {
"effect": "skeleton dance"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/23cd8d90-2962-43b4-a5d8-47da2ff61393.jpg",
"frame": "first"
}
]
}
}Response
{
"taskType": "videoInference",
"taskUUID": "1588e988-ff12-41f9-9421-97715e0cd47b",
"videoUUID": "91b73765-ede6-4238-9560-1fb44de39768",
"videoURL": "https://vm.runware.ai/video/os/a10dlim3/ws/5/vi/91b73765-ede6-4238-9560-1fb44de39768.mp4",
"seed": 848852581,
"cost": 0.112
}