PixVerse V5.5

PixVerse V5.5 is a director focused video model for story driven clips. It supports multi image fusion for character continuity, multi shot sequences, and native audio. It delivers smooth motion, refined cinematic control, and precise text guided video generation for complex scenes.

API Reference
INTEGRATE
Complete technical specification for integration
RequestResponse
Examples9
CODE
Ready-to-use code snippets for common workflows
Forensic Entomology Docuseries Teaser
import { 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@6',
positivePrompt: 'Create a cinematic 5-second portrait title sequence for a prestige forensic entomology docuseries titled "THE QUIET WITNESS." Three precise, connected shots with restrained investigative tension. Shot 1: extreme macro of a translucent fly wing beneath a forensic microscope; the mechanical stage glides sideways while focus racks across branching veins, cold bone-white laboratory light, deep carbon-black shadows, tiny dust particles. Shot 2: match cut from the wing veins to thin black routes on an ivory evidence map viewed overhead; an oxidized-red case pin drops sharply into place beside a transparent measurement scale as the camera pushes closer. Shot 3: match cut to a pinned beetle specimen in profile; its long shadow expands across textured archival paper and becomes a clean dark field. The exact title THE QUIET WITNESS resolves in centered condensed ivory capitals, with no other wording. Compose every shot for a narrow 9:16 frame, strong central geometry, realistic macro optics, shallow depth of field, subtle 35mm grain, clinical museum-archive art direction, elegant rather than graphic. Synchronized generated audio: microscope stage click, faint fluorescent hum, crisp pin impact, delicate wing flutter, one low bowed-cello harmonic swelling into the title, then abrupt silence.',
negativePrompt: 'Gore, corpse, blood, horror monster, neon lighting, cyberpunk, fantasy insects, cartoon imagery, cluttered composition, shaky camera, illegible title, misspelled words, subtitles, credits, logos, watermarks, extra text.',
width: 1080,
height: 1920,
duration: 5,
providerSettings: {
pixverse: {
audio: true,
multiClip: true,
thinking: 'auto'
}
}
})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@6",
"positivePrompt": "Create a cinematic 5-second portrait title sequence for a prestige forensic entomology docuseries titled \"THE QUIET WITNESS.\" Three precise, connected shots with restrained investigative tension. Shot 1: extreme macro of a translucent fly wing beneath a forensic microscope; the mechanical stage glides sideways while focus racks across branching veins, cold bone-white laboratory light, deep carbon-black shadows, tiny dust particles. Shot 2: match cut from the wing veins to thin black routes on an ivory evidence map viewed overhead; an oxidized-red case pin drops sharply into place beside a transparent measurement scale as the camera pushes closer. Shot 3: match cut to a pinned beetle specimen in profile; its long shadow expands across textured archival paper and becomes a clean dark field. The exact title THE QUIET WITNESS resolves in centered condensed ivory capitals, with no other wording. Compose every shot for a narrow 9:16 frame, strong central geometry, realistic macro optics, shallow depth of field, subtle 35mm grain, clinical museum-archive art direction, elegant rather than graphic. Synchronized generated audio: microscope stage click, faint fluorescent hum, crisp pin impact, delicate wing flutter, one low bowed-cello harmonic swelling into the title, then abrupt silence.",
"negativePrompt": "Gore, corpse, blood, horror monster, neon lighting, cyberpunk, fantasy insects, cartoon imagery, cluttered composition, shaky camera, illegible title, misspelled words, subtitles, credits, logos, watermarks, extra text.",
"width": 1080,
"height": 1920,
"duration": 5,
"providerSettings": {
"pixverse": {
"audio": True,
"multiClip": True,
"thinking": "auto"
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "5d08e550-30b7-44ef-8b70-af0d37420669",
"model": "pixverse:1@6",
"positivePrompt": "Create a cinematic 5-second portrait title sequence for a prestige forensic entomology docuseries titled \"THE QUIET WITNESS.\" Three precise, connected shots with restrained investigative tension. Shot 1: extreme macro of a translucent fly wing beneath a forensic microscope; the mechanical stage glides sideways while focus racks across branching veins, cold bone-white laboratory light, deep carbon-black shadows, tiny dust particles. Shot 2: match cut from the wing veins to thin black routes on an ivory evidence map viewed overhead; an oxidized-red case pin drops sharply into place beside a transparent measurement scale as the camera pushes closer. Shot 3: match cut to a pinned beetle specimen in profile; its long shadow expands across textured archival paper and becomes a clean dark field. The exact title THE QUIET WITNESS resolves in centered condensed ivory capitals, with no other wording. Compose every shot for a narrow 9:16 frame, strong central geometry, realistic macro optics, shallow depth of field, subtle 35mm grain, clinical museum-archive art direction, elegant rather than graphic. Synchronized generated audio: microscope stage click, faint fluorescent hum, crisp pin impact, delicate wing flutter, one low bowed-cello harmonic swelling into the title, then abrupt silence.",
"negativePrompt": "Gore, corpse, blood, horror monster, neon lighting, cyberpunk, fantasy insects, cartoon imagery, cluttered composition, shaky camera, illegible title, misspelled words, subtitles, credits, logos, watermarks, extra text.",
"width": 1080,
"height": 1920,
"duration": 5,
"providerSettings": {
"pixverse": {
"audio": true,
"multiClip": true,
"thinking": "auto"
}
}
}
]'runware run pixverse:1@6 \
positivePrompt="Create a cinematic 5-second portrait title sequence for a prestige forensic entomology docuseries titled \"THE QUIET WITNESS.\" Three precise, connected shots with restrained investigative tension. Shot 1: extreme macro of a translucent fly wing beneath a forensic microscope; the mechanical stage glides sideways while focus racks across branching veins, cold bone-white laboratory light, deep carbon-black shadows, tiny dust particles. Shot 2: match cut from the wing veins to thin black routes on an ivory evidence map viewed overhead; an oxidized-red case pin drops sharply into place beside a transparent measurement scale as the camera pushes closer. Shot 3: match cut to a pinned beetle specimen in profile; its long shadow expands across textured archival paper and becomes a clean dark field. The exact title THE QUIET WITNESS resolves in centered condensed ivory capitals, with no other wording. Compose every shot for a narrow 9:16 frame, strong central geometry, realistic macro optics, shallow depth of field, subtle 35mm grain, clinical museum-archive art direction, elegant rather than graphic. Synchronized generated audio: microscope stage click, faint fluorescent hum, crisp pin impact, delicate wing flutter, one low bowed-cello harmonic swelling into the title, then abrupt silence." \
negativePrompt="Gore, corpse, blood, horror monster, neon lighting, cyberpunk, fantasy insects, cartoon imagery, cluttered composition, shaky camera, illegible title, misspelled words, subtitles, credits, logos, watermarks, extra text." \
width=1080 \
height=1920 \
duration=5 \
providerSettings.pixverse.audio=true \
providerSettings.pixverse.multiClip=true \
providerSettings.pixverse.thinking=auto{
"taskType": "videoInference",
"taskUUID": "5d08e550-30b7-44ef-8b70-af0d37420669",
"model": "pixverse:1@6",
"positivePrompt": "Create a cinematic 5-second portrait title sequence for a prestige forensic entomology docuseries titled \"THE QUIET WITNESS.\" Three precise, connected shots with restrained investigative tension. Shot 1: extreme macro of a translucent fly wing beneath a forensic microscope; the mechanical stage glides sideways while focus racks across branching veins, cold bone-white laboratory light, deep carbon-black shadows, tiny dust particles. Shot 2: match cut from the wing veins to thin black routes on an ivory evidence map viewed overhead; an oxidized-red case pin drops sharply into place beside a transparent measurement scale as the camera pushes closer. Shot 3: match cut to a pinned beetle specimen in profile; its long shadow expands across textured archival paper and becomes a clean dark field. The exact title THE QUIET WITNESS resolves in centered condensed ivory capitals, with no other wording. Compose every shot for a narrow 9:16 frame, strong central geometry, realistic macro optics, shallow depth of field, subtle 35mm grain, clinical museum-archive art direction, elegant rather than graphic. Synchronized generated audio: microscope stage click, faint fluorescent hum, crisp pin impact, delicate wing flutter, one low bowed-cello harmonic swelling into the title, then abrupt silence.",
"negativePrompt": "Gore, corpse, blood, horror monster, neon lighting, cyberpunk, fantasy insects, cartoon imagery, cluttered composition, shaky camera, illegible title, misspelled words, subtitles, credits, logos, watermarks, extra text.",
"width": 1080,
"height": 1920,
"duration": 5,
"providerSettings": {
"pixverse": {
"audio": true,
"multiClip": true,
"thinking": "auto"
}
}
}{
"taskType": "videoInference",
"taskUUID": "5d08e550-30b7-44ef-8b70-af0d37420669",
"videoUUID": "9cffe9c8-4a66-4682-bef9-a69b75852155",
"videoURL": "https://vm.runware.ai/video/os/a07dlim3/ws/5/vi/9cffe9c8-4a66-4682-bef9-a69b75852155.mp4",
"seed": 1378439642,
"cost": 0.4715
}Heritage Tile Restoration Reel
import { 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@6',
positivePrompt: 'Create a polished 5-second vertical social media ad for a heritage tile restoration specialist, with three fast cinematic shots and realistic generated audio. Shot 1: extreme macro, looking straight down at a century-old encaustic hallway tile obscured by dull gray grime; a gloved hand draws a metal floor-cleaning wand into frame. Shot 2: low tracking close-up as the spinning brush and extraction head travel across the floor, dirty water rushing beneath the clear nozzle and revealing crisp rust-red, ochre, cream, and charcoal geometry in one continuous satisfying pass. Shot 3: rapid pullback to a symmetrical overhead reveal of the fully restored Victorian hallway, warm morning sunlight crossing the richly patterned floor as the technician steps neatly out of frame. Premium tactile documentary realism, warm earthy palette, natural window light, subtle film grain, precise material detail, energetic editorial cuts, strong center composition and safe portrait framing. Audio: bristly scrub, water extraction hiss, ceramic squeak, then a clean resonant finishing chime. No narration, captions, logos, or on-screen text.',
negativePrompt: 'split screen, before-and-after divider, visible branding, captions, typography, interface elements, neon lighting, fantasy imagery, warped tile patterns, rubbery hands, extra fingers, excessive water, shaky camera, flicker, low detail',
width: 1080,
height: 1920,
duration: 5,
providerSettings: {
pixverse: {
audio: true,
multiClip: true,
thinking: 'auto'
}
}
})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@6",
"positivePrompt": "Create a polished 5-second vertical social media ad for a heritage tile restoration specialist, with three fast cinematic shots and realistic generated audio. Shot 1: extreme macro, looking straight down at a century-old encaustic hallway tile obscured by dull gray grime; a gloved hand draws a metal floor-cleaning wand into frame. Shot 2: low tracking close-up as the spinning brush and extraction head travel across the floor, dirty water rushing beneath the clear nozzle and revealing crisp rust-red, ochre, cream, and charcoal geometry in one continuous satisfying pass. Shot 3: rapid pullback to a symmetrical overhead reveal of the fully restored Victorian hallway, warm morning sunlight crossing the richly patterned floor as the technician steps neatly out of frame. Premium tactile documentary realism, warm earthy palette, natural window light, subtle film grain, precise material detail, energetic editorial cuts, strong center composition and safe portrait framing. Audio: bristly scrub, water extraction hiss, ceramic squeak, then a clean resonant finishing chime. No narration, captions, logos, or on-screen text.",
"negativePrompt": "split screen, before-and-after divider, visible branding, captions, typography, interface elements, neon lighting, fantasy imagery, warped tile patterns, rubbery hands, extra fingers, excessive water, shaky camera, flicker, low detail",
"width": 1080,
"height": 1920,
"duration": 5,
"providerSettings": {
"pixverse": {
"audio": True,
"multiClip": True,
"thinking": "auto"
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "d86a7b2d-d6ec-456b-b51d-0c3afb6981ad",
"model": "pixverse:1@6",
"positivePrompt": "Create a polished 5-second vertical social media ad for a heritage tile restoration specialist, with three fast cinematic shots and realistic generated audio. Shot 1: extreme macro, looking straight down at a century-old encaustic hallway tile obscured by dull gray grime; a gloved hand draws a metal floor-cleaning wand into frame. Shot 2: low tracking close-up as the spinning brush and extraction head travel across the floor, dirty water rushing beneath the clear nozzle and revealing crisp rust-red, ochre, cream, and charcoal geometry in one continuous satisfying pass. Shot 3: rapid pullback to a symmetrical overhead reveal of the fully restored Victorian hallway, warm morning sunlight crossing the richly patterned floor as the technician steps neatly out of frame. Premium tactile documentary realism, warm earthy palette, natural window light, subtle film grain, precise material detail, energetic editorial cuts, strong center composition and safe portrait framing. Audio: bristly scrub, water extraction hiss, ceramic squeak, then a clean resonant finishing chime. No narration, captions, logos, or on-screen text.",
"negativePrompt": "split screen, before-and-after divider, visible branding, captions, typography, interface elements, neon lighting, fantasy imagery, warped tile patterns, rubbery hands, extra fingers, excessive water, shaky camera, flicker, low detail",
"width": 1080,
"height": 1920,
"duration": 5,
"providerSettings": {
"pixverse": {
"audio": true,
"multiClip": true,
"thinking": "auto"
}
}
}
]'runware run pixverse:1@6 \
positivePrompt="Create a polished 5-second vertical social media ad for a heritage tile restoration specialist, with three fast cinematic shots and realistic generated audio. Shot 1: extreme macro, looking straight down at a century-old encaustic hallway tile obscured by dull gray grime; a gloved hand draws a metal floor-cleaning wand into frame. Shot 2: low tracking close-up as the spinning brush and extraction head travel across the floor, dirty water rushing beneath the clear nozzle and revealing crisp rust-red, ochre, cream, and charcoal geometry in one continuous satisfying pass. Shot 3: rapid pullback to a symmetrical overhead reveal of the fully restored Victorian hallway, warm morning sunlight crossing the richly patterned floor as the technician steps neatly out of frame. Premium tactile documentary realism, warm earthy palette, natural window light, subtle film grain, precise material detail, energetic editorial cuts, strong center composition and safe portrait framing. Audio: bristly scrub, water extraction hiss, ceramic squeak, then a clean resonant finishing chime. No narration, captions, logos, or on-screen text." \
negativePrompt="split screen, before-and-after divider, visible branding, captions, typography, interface elements, neon lighting, fantasy imagery, warped tile patterns, rubbery hands, extra fingers, excessive water, shaky camera, flicker, low detail" \
width=1080 \
height=1920 \
duration=5 \
providerSettings.pixverse.audio=true \
providerSettings.pixverse.multiClip=true \
providerSettings.pixverse.thinking=auto{
"taskType": "videoInference",
"taskUUID": "d86a7b2d-d6ec-456b-b51d-0c3afb6981ad",
"model": "pixverse:1@6",
"positivePrompt": "Create a polished 5-second vertical social media ad for a heritage tile restoration specialist, with three fast cinematic shots and realistic generated audio. Shot 1: extreme macro, looking straight down at a century-old encaustic hallway tile obscured by dull gray grime; a gloved hand draws a metal floor-cleaning wand into frame. Shot 2: low tracking close-up as the spinning brush and extraction head travel across the floor, dirty water rushing beneath the clear nozzle and revealing crisp rust-red, ochre, cream, and charcoal geometry in one continuous satisfying pass. Shot 3: rapid pullback to a symmetrical overhead reveal of the fully restored Victorian hallway, warm morning sunlight crossing the richly patterned floor as the technician steps neatly out of frame. Premium tactile documentary realism, warm earthy palette, natural window light, subtle film grain, precise material detail, energetic editorial cuts, strong center composition and safe portrait framing. Audio: bristly scrub, water extraction hiss, ceramic squeak, then a clean resonant finishing chime. No narration, captions, logos, or on-screen text.",
"negativePrompt": "split screen, before-and-after divider, visible branding, captions, typography, interface elements, neon lighting, fantasy imagery, warped tile patterns, rubbery hands, extra fingers, excessive water, shaky camera, flicker, low detail",
"width": 1080,
"height": 1920,
"duration": 5,
"providerSettings": {
"pixverse": {
"audio": true,
"multiClip": true,
"thinking": "auto"
}
}
}{
"taskType": "videoInference",
"taskUUID": "d86a7b2d-d6ec-456b-b51d-0c3afb6981ad",
"videoUUID": "16cae0af-6f7f-413c-907c-93324eb5e135",
"videoURL": "https://vm.runware.ai/video/os/a10dlim3/ws/5/vi/16cae0af-6f7f-413c-907c-93324eb5e135.mp4",
"seed": 1792834053,
"cost": 0.4715
}Tidal Oyster Percussion Music Segment
import { 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@6',
positivePrompt: 'Continue directly and naturally from the supplied opening frame as a polished music-video performance shot. The percussionist locks eyes with camera, swings the oyster basket down onto the stainless wash table on the first beat, and clean seawater erupts in a sharp silver fan while oysters rattle rhythmically inside. She repeats the physical basket percussion with confident, workmanlike choreography as two oyster farmers in muted waterproof gear step into the deep background and pull long grading rakes in synchronized strokes. Track smoothly sideways just above water level, then arc inward around her while preserving her appearance, clothing, location and realistic proportions. Each impact sends concentric ripples through the shallow water; droplets hang briefly in the cool dawn light. Finish with the camera rising slightly as she lifts the dripping basket toward frame, revealing geometric rows of timber oyster racks across the tidal flat. Grounded coastal documentary realism elevated by precise musical timing; tactile metal, shell and water textures; pearl gray, sea green, rust and safety orange palette; energetic but unsentimental mood. Native audio: driving frame drum and dry handclaps fused with basket rattles, shell clicks, boot splashes and distant gulls; no dialogue, no lyrics, no on-screen text.',
resolution: '720p',
duration: 8,
providerSettings: {
pixverse: {
style: 'clay',
thinking: 'enabled'
}
},
inputs: {
frameImages: [
{
image: 'https://assets.runware.ai/assets/inputs/d398f344-53fe-48c4-a9de-f3ebe98afe75.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@6",
"positivePrompt": "Continue directly and naturally from the supplied opening frame as a polished music-video performance shot. The percussionist locks eyes with camera, swings the oyster basket down onto the stainless wash table on the first beat, and clean seawater erupts in a sharp silver fan while oysters rattle rhythmically inside. She repeats the physical basket percussion with confident, workmanlike choreography as two oyster farmers in muted waterproof gear step into the deep background and pull long grading rakes in synchronized strokes. Track smoothly sideways just above water level, then arc inward around her while preserving her appearance, clothing, location and realistic proportions. Each impact sends concentric ripples through the shallow water; droplets hang briefly in the cool dawn light. Finish with the camera rising slightly as she lifts the dripping basket toward frame, revealing geometric rows of timber oyster racks across the tidal flat. Grounded coastal documentary realism elevated by precise musical timing; tactile metal, shell and water textures; pearl gray, sea green, rust and safety orange palette; energetic but unsentimental mood. Native audio: driving frame drum and dry handclaps fused with basket rattles, shell clicks, boot splashes and distant gulls; no dialogue, no lyrics, no on-screen text.",
"resolution": "720p",
"duration": 8,
"providerSettings": {
"pixverse": {
"style": "clay",
"thinking": "enabled"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/d398f344-53fe-48c4-a9de-f3ebe98afe75.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": "5e99fae9-71ab-4edb-8685-5bda69e7a1bc",
"model": "pixverse:1@6",
"positivePrompt": "Continue directly and naturally from the supplied opening frame as a polished music-video performance shot. The percussionist locks eyes with camera, swings the oyster basket down onto the stainless wash table on the first beat, and clean seawater erupts in a sharp silver fan while oysters rattle rhythmically inside. She repeats the physical basket percussion with confident, workmanlike choreography as two oyster farmers in muted waterproof gear step into the deep background and pull long grading rakes in synchronized strokes. Track smoothly sideways just above water level, then arc inward around her while preserving her appearance, clothing, location and realistic proportions. Each impact sends concentric ripples through the shallow water; droplets hang briefly in the cool dawn light. Finish with the camera rising slightly as she lifts the dripping basket toward frame, revealing geometric rows of timber oyster racks across the tidal flat. Grounded coastal documentary realism elevated by precise musical timing; tactile metal, shell and water textures; pearl gray, sea green, rust and safety orange palette; energetic but unsentimental mood. Native audio: driving frame drum and dry handclaps fused with basket rattles, shell clicks, boot splashes and distant gulls; no dialogue, no lyrics, no on-screen text.",
"resolution": "720p",
"duration": 8,
"providerSettings": {
"pixverse": {
"style": "clay",
"thinking": "enabled"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/d398f344-53fe-48c4-a9de-f3ebe98afe75.jpg",
"frame": "first"
}
]
}
}
]'runware run pixverse:1@6 \
positivePrompt="Continue directly and naturally from the supplied opening frame as a polished music-video performance shot. The percussionist locks eyes with camera, swings the oyster basket down onto the stainless wash table on the first beat, and clean seawater erupts in a sharp silver fan while oysters rattle rhythmically inside. She repeats the physical basket percussion with confident, workmanlike choreography as two oyster farmers in muted waterproof gear step into the deep background and pull long grading rakes in synchronized strokes. Track smoothly sideways just above water level, then arc inward around her while preserving her appearance, clothing, location and realistic proportions. Each impact sends concentric ripples through the shallow water; droplets hang briefly in the cool dawn light. Finish with the camera rising slightly as she lifts the dripping basket toward frame, revealing geometric rows of timber oyster racks across the tidal flat. Grounded coastal documentary realism elevated by precise musical timing; tactile metal, shell and water textures; pearl gray, sea green, rust and safety orange palette; energetic but unsentimental mood. Native audio: driving frame drum and dry handclaps fused with basket rattles, shell clicks, boot splashes and distant gulls; no dialogue, no lyrics, no on-screen text." \
resolution=720p \
duration=8 \
providerSettings.pixverse.style=clay \
providerSettings.pixverse.thinking=enabled \
inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/d398f344-53fe-48c4-a9de-f3ebe98afe75.jpg \
inputs.frameImages.0.frame=first{
"taskType": "videoInference",
"taskUUID": "5e99fae9-71ab-4edb-8685-5bda69e7a1bc",
"model": "pixverse:1@6",
"positivePrompt": "Continue directly and naturally from the supplied opening frame as a polished music-video performance shot. The percussionist locks eyes with camera, swings the oyster basket down onto the stainless wash table on the first beat, and clean seawater erupts in a sharp silver fan while oysters rattle rhythmically inside. She repeats the physical basket percussion with confident, workmanlike choreography as two oyster farmers in muted waterproof gear step into the deep background and pull long grading rakes in synchronized strokes. Track smoothly sideways just above water level, then arc inward around her while preserving her appearance, clothing, location and realistic proportions. Each impact sends concentric ripples through the shallow water; droplets hang briefly in the cool dawn light. Finish with the camera rising slightly as she lifts the dripping basket toward frame, revealing geometric rows of timber oyster racks across the tidal flat. Grounded coastal documentary realism elevated by precise musical timing; tactile metal, shell and water textures; pearl gray, sea green, rust and safety orange palette; energetic but unsentimental mood. Native audio: driving frame drum and dry handclaps fused with basket rattles, shell clicks, boot splashes and distant gulls; no dialogue, no lyrics, no on-screen text.",
"resolution": "720p",
"duration": 8,
"providerSettings": {
"pixverse": {
"style": "clay",
"thinking": "enabled"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/d398f344-53fe-48c4-a9de-f3ebe98afe75.jpg",
"frame": "first"
}
]
}
}{
"taskType": "videoInference",
"taskUUID": "5e99fae9-71ab-4edb-8685-5bda69e7a1bc",
"videoUUID": "475d5225-8a94-47d1-accb-95da8aea463b",
"videoURL": "https://vm.runware.ai/video/os/a01d21/ws/5/vi/475d5225-8a94-47d1-accb-95da8aea463b.mp4",
"seed": 852921096,
"cost": 0.3536
}Glass Plate Archive Title Sequence
import { 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@6',
positivePrompt: 'Create a five-second cinematic main-title reveal for a prestige genealogy documentary. Begin exactly on the supplied first frame: a locked overhead macro composition of the cloudy 1890s glass plate inside the black enamel developing tray under a crimson safelight. Developer pours gently from the upper right, spreading across the emulsion in one continuous, physically convincing sheet. Tiny ripples travel through reflected red light; suspended silver grains swirl and settle. As the liquid advances, the same Victorian woman\'s face gradually emerges from milky abstraction into a sharp luminous silver portrait, eyes appearing last. Make the transformation tactile and photographic, not supernatural. Use a restrained progression of close insert cuts while preserving screen direction and object continuity: liquid edge crossing glass, silver crystals blooming, brass timer hand twitching, then return to the original locked overhead framing. The ivory serif title NAMES IN SILVER resolves cleanly within the developed emulsion across the lower third, stable and legible without warping. End exactly on the supplied last frame. Art direction: archival darkroom realism, silver-black shadows, deep crimson practical light, warm walnut accents, shallow highlights, subtle 35mm grain, elegant and haunting rather than frightening.',
negativePrompt: 'Modern laboratory equipment, digital screens, interface graphics, extra hands, extra objects, distorted face, supernatural effects, neon colors, camera shake, comedy, illegible lettering, misspelled title, duplicate text, warped typography, watermarks, logos, subtitles, credits.',
resolution: '1080p',
duration: 5,
providerSettings: {
pixverse: {
audio: true,
thinking: 'auto'
}
},
inputs: {
frameImages: [
{
image: 'https://assets.runware.ai/assets/inputs/de3e98ba-2d10-4db0-8b6c-131a54b82628.jpg',
frame: 'first'
},
{
image: 'https://assets.runware.ai/assets/inputs/5314ad3b-73b2-427e-8563-60d437c377cd.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@6",
"positivePrompt": "Create a five-second cinematic main-title reveal for a prestige genealogy documentary. Begin exactly on the supplied first frame: a locked overhead macro composition of the cloudy 1890s glass plate inside the black enamel developing tray under a crimson safelight. Developer pours gently from the upper right, spreading across the emulsion in one continuous, physically convincing sheet. Tiny ripples travel through reflected red light; suspended silver grains swirl and settle. As the liquid advances, the same Victorian woman's face gradually emerges from milky abstraction into a sharp luminous silver portrait, eyes appearing last. Make the transformation tactile and photographic, not supernatural. Use a restrained progression of close insert cuts while preserving screen direction and object continuity: liquid edge crossing glass, silver crystals blooming, brass timer hand twitching, then return to the original locked overhead framing. The ivory serif title NAMES IN SILVER resolves cleanly within the developed emulsion across the lower third, stable and legible without warping. End exactly on the supplied last frame. Art direction: archival darkroom realism, silver-black shadows, deep crimson practical light, warm walnut accents, shallow highlights, subtle 35mm grain, elegant and haunting rather than frightening.",
"negativePrompt": "Modern laboratory equipment, digital screens, interface graphics, extra hands, extra objects, distorted face, supernatural effects, neon colors, camera shake, comedy, illegible lettering, misspelled title, duplicate text, warped typography, watermarks, logos, subtitles, credits.",
"resolution": "1080p",
"duration": 5,
"providerSettings": {
"pixverse": {
"audio": True,
"thinking": "auto"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/de3e98ba-2d10-4db0-8b6c-131a54b82628.jpg",
"frame": "first"
},
{
"image": "https://assets.runware.ai/assets/inputs/5314ad3b-73b2-427e-8563-60d437c377cd.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": "3ca9281e-e15e-4dca-83a3-c205bb7af02d",
"model": "pixverse:1@6",
"positivePrompt": "Create a five-second cinematic main-title reveal for a prestige genealogy documentary. Begin exactly on the supplied first frame: a locked overhead macro composition of the cloudy 1890s glass plate inside the black enamel developing tray under a crimson safelight. Developer pours gently from the upper right, spreading across the emulsion in one continuous, physically convincing sheet. Tiny ripples travel through reflected red light; suspended silver grains swirl and settle. As the liquid advances, the same Victorian woman's face gradually emerges from milky abstraction into a sharp luminous silver portrait, eyes appearing last. Make the transformation tactile and photographic, not supernatural. Use a restrained progression of close insert cuts while preserving screen direction and object continuity: liquid edge crossing glass, silver crystals blooming, brass timer hand twitching, then return to the original locked overhead framing. The ivory serif title NAMES IN SILVER resolves cleanly within the developed emulsion across the lower third, stable and legible without warping. End exactly on the supplied last frame. Art direction: archival darkroom realism, silver-black shadows, deep crimson practical light, warm walnut accents, shallow highlights, subtle 35mm grain, elegant and haunting rather than frightening.",
"negativePrompt": "Modern laboratory equipment, digital screens, interface graphics, extra hands, extra objects, distorted face, supernatural effects, neon colors, camera shake, comedy, illegible lettering, misspelled title, duplicate text, warped typography, watermarks, logos, subtitles, credits.",
"resolution": "1080p",
"duration": 5,
"providerSettings": {
"pixverse": {
"audio": true,
"thinking": "auto"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/de3e98ba-2d10-4db0-8b6c-131a54b82628.jpg",
"frame": "first"
},
{
"image": "https://assets.runware.ai/assets/inputs/5314ad3b-73b2-427e-8563-60d437c377cd.jpg",
"frame": "last"
}
]
}
}
]'runware run pixverse:1@6 \
positivePrompt="Create a five-second cinematic main-title reveal for a prestige genealogy documentary. Begin exactly on the supplied first frame: a locked overhead macro composition of the cloudy 1890s glass plate inside the black enamel developing tray under a crimson safelight. Developer pours gently from the upper right, spreading across the emulsion in one continuous, physically convincing sheet. Tiny ripples travel through reflected red light; suspended silver grains swirl and settle. As the liquid advances, the same Victorian woman's face gradually emerges from milky abstraction into a sharp luminous silver portrait, eyes appearing last. Make the transformation tactile and photographic, not supernatural. Use a restrained progression of close insert cuts while preserving screen direction and object continuity: liquid edge crossing glass, silver crystals blooming, brass timer hand twitching, then return to the original locked overhead framing. The ivory serif title NAMES IN SILVER resolves cleanly within the developed emulsion across the lower third, stable and legible without warping. End exactly on the supplied last frame. Art direction: archival darkroom realism, silver-black shadows, deep crimson practical light, warm walnut accents, shallow highlights, subtle 35mm grain, elegant and haunting rather than frightening." \
negativePrompt="Modern laboratory equipment, digital screens, interface graphics, extra hands, extra objects, distorted face, supernatural effects, neon colors, camera shake, comedy, illegible lettering, misspelled title, duplicate text, warped typography, watermarks, logos, subtitles, credits." \
resolution=1080p \
duration=5 \
providerSettings.pixverse.audio=true \
providerSettings.pixverse.thinking=auto \
inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/de3e98ba-2d10-4db0-8b6c-131a54b82628.jpg \
inputs.frameImages.0.frame=first \
inputs.frameImages.1.image=https://assets.runware.ai/assets/inputs/5314ad3b-73b2-427e-8563-60d437c377cd.jpg \
inputs.frameImages.1.frame=last{
"taskType": "videoInference",
"taskUUID": "3ca9281e-e15e-4dca-83a3-c205bb7af02d",
"model": "pixverse:1@6",
"positivePrompt": "Create a five-second cinematic main-title reveal for a prestige genealogy documentary. Begin exactly on the supplied first frame: a locked overhead macro composition of the cloudy 1890s glass plate inside the black enamel developing tray under a crimson safelight. Developer pours gently from the upper right, spreading across the emulsion in one continuous, physically convincing sheet. Tiny ripples travel through reflected red light; suspended silver grains swirl and settle. As the liquid advances, the same Victorian woman's face gradually emerges from milky abstraction into a sharp luminous silver portrait, eyes appearing last. Make the transformation tactile and photographic, not supernatural. Use a restrained progression of close insert cuts while preserving screen direction and object continuity: liquid edge crossing glass, silver crystals blooming, brass timer hand twitching, then return to the original locked overhead framing. The ivory serif title NAMES IN SILVER resolves cleanly within the developed emulsion across the lower third, stable and legible without warping. End exactly on the supplied last frame. Art direction: archival darkroom realism, silver-black shadows, deep crimson practical light, warm walnut accents, shallow highlights, subtle 35mm grain, elegant and haunting rather than frightening.",
"negativePrompt": "Modern laboratory equipment, digital screens, interface graphics, extra hands, extra objects, distorted face, supernatural effects, neon colors, camera shake, comedy, illegible lettering, misspelled title, duplicate text, warped typography, watermarks, logos, subtitles, credits.",
"resolution": "1080p",
"duration": 5,
"providerSettings": {
"pixverse": {
"audio": true,
"thinking": "auto"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/de3e98ba-2d10-4db0-8b6c-131a54b82628.jpg",
"frame": "first"
},
{
"image": "https://assets.runware.ai/assets/inputs/5314ad3b-73b2-427e-8563-60d437c377cd.jpg",
"frame": "last"
}
]
}
}{
"taskType": "videoInference",
"taskUUID": "3ca9281e-e15e-4dca-83a3-c205bb7af02d",
"videoUUID": "a7dffc2d-fd93-4af6-842d-512665aec49f",
"videoURL": "https://vm.runware.ai/video/os/a06dlim3/ws/5/vi/a7dffc2d-fd93-4af6-842d-512665aec49f.mp4",
"seed": 375089384,
"cost": 0.3831
}Moonlit Clockwork Carnival 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: 'pixverse:1@6',
positivePrompt: 'A surreal midnight carnival crossing a foggy old stone bridge above a black river, led by a towering clockwork elephant with glowing amber eyes and polished brass joints, followed by masked performers carrying lanterns shaped like moons, silk banners fluttering in the wind, sparks drifting from mechanical calliope wagons, reflections rippling in the water below. Multi-shot cinematic sequence: wide establishing shot of the moonlit bridge and ruined gothic city in the background, low angle tracking shot beside the elephant’s moving gears and stamping feet, medium shot of a young ringmaster in a deep teal coat lifting a silver baton as lantern light flickers across their face, overhead shot of the procession winding through blue fog, final close shot of a carousel horse automaton turning its head toward camera as distant fireworks bloom behind cathedral spires. Rich atmosphere, elegant camera movement, dramatic depth, volumetric moonlight, highly detailed textures, whimsical yet haunting mood, refined cinematic composition, immersive environmental sound with soft calliope music, mechanical creaks, footsteps on stone, river ambience, and faraway fireworks.',
negativePrompt: 'blurry, low detail, distorted anatomy, extra limbs, duplicate subjects, warped faces, unreadable objects, noisy image, jittery motion, oversaturated colors, flat lighting, text overlays, watermarks, logos',
width: 1280,
height: 720,
duration: 8,
seed: 44372,
providerSettings: {
pixverse: {
style: '3d_animation',
audio: true,
multiClip: true,
thinking: 'enabled'
}
}
})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@6",
"positivePrompt": "A surreal midnight carnival crossing a foggy old stone bridge above a black river, led by a towering clockwork elephant with glowing amber eyes and polished brass joints, followed by masked performers carrying lanterns shaped like moons, silk banners fluttering in the wind, sparks drifting from mechanical calliope wagons, reflections rippling in the water below. Multi-shot cinematic sequence: wide establishing shot of the moonlit bridge and ruined gothic city in the background, low angle tracking shot beside the elephant’s moving gears and stamping feet, medium shot of a young ringmaster in a deep teal coat lifting a silver baton as lantern light flickers across their face, overhead shot of the procession winding through blue fog, final close shot of a carousel horse automaton turning its head toward camera as distant fireworks bloom behind cathedral spires. Rich atmosphere, elegant camera movement, dramatic depth, volumetric moonlight, highly detailed textures, whimsical yet haunting mood, refined cinematic composition, immersive environmental sound with soft calliope music, mechanical creaks, footsteps on stone, river ambience, and faraway fireworks.",
"negativePrompt": "blurry, low detail, distorted anatomy, extra limbs, duplicate subjects, warped faces, unreadable objects, noisy image, jittery motion, oversaturated colors, flat lighting, text overlays, watermarks, logos",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 44372,
"providerSettings": {
"pixverse": {
"style": "3d_animation",
"audio": True,
"multiClip": True,
"thinking": "enabled"
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "94759f56-09e3-42a2-a89d-3d288a8d2055",
"model": "pixverse:1@6",
"positivePrompt": "A surreal midnight carnival crossing a foggy old stone bridge above a black river, led by a towering clockwork elephant with glowing amber eyes and polished brass joints, followed by masked performers carrying lanterns shaped like moons, silk banners fluttering in the wind, sparks drifting from mechanical calliope wagons, reflections rippling in the water below. Multi-shot cinematic sequence: wide establishing shot of the moonlit bridge and ruined gothic city in the background, low angle tracking shot beside the elephant’s moving gears and stamping feet, medium shot of a young ringmaster in a deep teal coat lifting a silver baton as lantern light flickers across their face, overhead shot of the procession winding through blue fog, final close shot of a carousel horse automaton turning its head toward camera as distant fireworks bloom behind cathedral spires. Rich atmosphere, elegant camera movement, dramatic depth, volumetric moonlight, highly detailed textures, whimsical yet haunting mood, refined cinematic composition, immersive environmental sound with soft calliope music, mechanical creaks, footsteps on stone, river ambience, and faraway fireworks.",
"negativePrompt": "blurry, low detail, distorted anatomy, extra limbs, duplicate subjects, warped faces, unreadable objects, noisy image, jittery motion, oversaturated colors, flat lighting, text overlays, watermarks, logos",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 44372,
"providerSettings": {
"pixverse": {
"style": "3d_animation",
"audio": true,
"multiClip": true,
"thinking": "enabled"
}
}
}
]'runware run pixverse:1@6 \
positivePrompt="A surreal midnight carnival crossing a foggy old stone bridge above a black river, led by a towering clockwork elephant with glowing amber eyes and polished brass joints, followed by masked performers carrying lanterns shaped like moons, silk banners fluttering in the wind, sparks drifting from mechanical calliope wagons, reflections rippling in the water below. Multi-shot cinematic sequence: wide establishing shot of the moonlit bridge and ruined gothic city in the background, low angle tracking shot beside the elephant’s moving gears and stamping feet, medium shot of a young ringmaster in a deep teal coat lifting a silver baton as lantern light flickers across their face, overhead shot of the procession winding through blue fog, final close shot of a carousel horse automaton turning its head toward camera as distant fireworks bloom behind cathedral spires. Rich atmosphere, elegant camera movement, dramatic depth, volumetric moonlight, highly detailed textures, whimsical yet haunting mood, refined cinematic composition, immersive environmental sound with soft calliope music, mechanical creaks, footsteps on stone, river ambience, and faraway fireworks." \
negativePrompt="blurry, low detail, distorted anatomy, extra limbs, duplicate subjects, warped faces, unreadable objects, noisy image, jittery motion, oversaturated colors, flat lighting, text overlays, watermarks, logos" \
width=1280 \
height=720 \
duration=8 \
seed=44372 \
providerSettings.pixverse.style=3d_animation \
providerSettings.pixverse.audio=true \
providerSettings.pixverse.multiClip=true \
providerSettings.pixverse.thinking=enabled{
"taskType": "videoInference",
"taskUUID": "94759f56-09e3-42a2-a89d-3d288a8d2055",
"model": "pixverse:1@6",
"positivePrompt": "A surreal midnight carnival crossing a foggy old stone bridge above a black river, led by a towering clockwork elephant with glowing amber eyes and polished brass joints, followed by masked performers carrying lanterns shaped like moons, silk banners fluttering in the wind, sparks drifting from mechanical calliope wagons, reflections rippling in the water below. Multi-shot cinematic sequence: wide establishing shot of the moonlit bridge and ruined gothic city in the background, low angle tracking shot beside the elephant’s moving gears and stamping feet, medium shot of a young ringmaster in a deep teal coat lifting a silver baton as lantern light flickers across their face, overhead shot of the procession winding through blue fog, final close shot of a carousel horse automaton turning its head toward camera as distant fireworks bloom behind cathedral spires. Rich atmosphere, elegant camera movement, dramatic depth, volumetric moonlight, highly detailed textures, whimsical yet haunting mood, refined cinematic composition, immersive environmental sound with soft calliope music, mechanical creaks, footsteps on stone, river ambience, and faraway fireworks.",
"negativePrompt": "blurry, low detail, distorted anatomy, extra limbs, duplicate subjects, warped faces, unreadable objects, noisy image, jittery motion, oversaturated colors, flat lighting, text overlays, watermarks, logos",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 44372,
"providerSettings": {
"pixverse": {
"style": "3d_animation",
"audio": true,
"multiClip": true,
"thinking": "enabled"
}
}
}{
"taskType": "videoInference",
"taskUUID": "94759f56-09e3-42a2-a89d-3d288a8d2055",
"videoUUID": "8ea9fe34-b50a-4bc4-806a-5a38b8b0841d",
"videoURL": "https://vm.runware.ai/video/os/a15d18/ws/5/vi/8ea9fe34-b50a-4bc4-806a-5a38b8b0841d.mp4",
"seed": 44372,
"cost": 0.4715
}Neon Bazaar Chase Sequence
import { 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@6',
positivePrompt: 'A story-driven cyberpunk night market chase in the rain, multi-shot cinematic sequence. Shot 1: wide establishing view of a dense neon bazaar packed with holographic signs, steam, umbrellas, food stalls, reflective pavement, and a masked courier clutching a glowing glass capsule. Shot 2: medium tracking shot as the courier weaves through crowds while two sleek drones pursue overhead, sparks and mist drifting through saturated magenta and teal light. Shot 3: low-angle close shot of boots splashing through puddles, dropped fruit rolling across the ground, stalls rattling, dramatic parallax and fast motion. Shot 4: dynamic side view as the courier leaps across narrow vendor counters beneath hanging lantern cables. Shot 5: final rooftop reveal at dawn-blue horizon, the courier turns back breathless, city skyline blazing behind, capsule illuminating their face. Highly cinematic, smooth motion, strong continuity, realistic rain physics, atmospheric depth, expressive lighting, polished blockbuster pacing, immersive environmental sound and chase audio.',
negativePrompt: 'low detail, blurry subjects, broken anatomy, extra limbs, duplicated people, warped faces, jittery motion, flicker, smeared objects, flat lighting, empty background, text overlays, subtitles, logos, watermark',
width: 1280,
height: 720,
duration: 8,
seed: 47883,
providerSettings: {
pixverse: {
style: 'cyberpunk',
audio: true,
multiClip: true,
thinking: 'enabled'
}
}
})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@6",
"positivePrompt": "A story-driven cyberpunk night market chase in the rain, multi-shot cinematic sequence. Shot 1: wide establishing view of a dense neon bazaar packed with holographic signs, steam, umbrellas, food stalls, reflective pavement, and a masked courier clutching a glowing glass capsule. Shot 2: medium tracking shot as the courier weaves through crowds while two sleek drones pursue overhead, sparks and mist drifting through saturated magenta and teal light. Shot 3: low-angle close shot of boots splashing through puddles, dropped fruit rolling across the ground, stalls rattling, dramatic parallax and fast motion. Shot 4: dynamic side view as the courier leaps across narrow vendor counters beneath hanging lantern cables. Shot 5: final rooftop reveal at dawn-blue horizon, the courier turns back breathless, city skyline blazing behind, capsule illuminating their face. Highly cinematic, smooth motion, strong continuity, realistic rain physics, atmospheric depth, expressive lighting, polished blockbuster pacing, immersive environmental sound and chase audio.",
"negativePrompt": "low detail, blurry subjects, broken anatomy, extra limbs, duplicated people, warped faces, jittery motion, flicker, smeared objects, flat lighting, empty background, text overlays, subtitles, logos, watermark",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 47883,
"providerSettings": {
"pixverse": {
"style": "cyberpunk",
"audio": True,
"multiClip": True,
"thinking": "enabled"
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "a9cd0a39-0e7d-4fca-9f8a-77ba79268056",
"model": "pixverse:1@6",
"positivePrompt": "A story-driven cyberpunk night market chase in the rain, multi-shot cinematic sequence. Shot 1: wide establishing view of a dense neon bazaar packed with holographic signs, steam, umbrellas, food stalls, reflective pavement, and a masked courier clutching a glowing glass capsule. Shot 2: medium tracking shot as the courier weaves through crowds while two sleek drones pursue overhead, sparks and mist drifting through saturated magenta and teal light. Shot 3: low-angle close shot of boots splashing through puddles, dropped fruit rolling across the ground, stalls rattling, dramatic parallax and fast motion. Shot 4: dynamic side view as the courier leaps across narrow vendor counters beneath hanging lantern cables. Shot 5: final rooftop reveal at dawn-blue horizon, the courier turns back breathless, city skyline blazing behind, capsule illuminating their face. Highly cinematic, smooth motion, strong continuity, realistic rain physics, atmospheric depth, expressive lighting, polished blockbuster pacing, immersive environmental sound and chase audio.",
"negativePrompt": "low detail, blurry subjects, broken anatomy, extra limbs, duplicated people, warped faces, jittery motion, flicker, smeared objects, flat lighting, empty background, text overlays, subtitles, logos, watermark",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 47883,
"providerSettings": {
"pixverse": {
"style": "cyberpunk",
"audio": true,
"multiClip": true,
"thinking": "enabled"
}
}
}
]'runware run pixverse:1@6 \
positivePrompt="A story-driven cyberpunk night market chase in the rain, multi-shot cinematic sequence. Shot 1: wide establishing view of a dense neon bazaar packed with holographic signs, steam, umbrellas, food stalls, reflective pavement, and a masked courier clutching a glowing glass capsule. Shot 2: medium tracking shot as the courier weaves through crowds while two sleek drones pursue overhead, sparks and mist drifting through saturated magenta and teal light. Shot 3: low-angle close shot of boots splashing through puddles, dropped fruit rolling across the ground, stalls rattling, dramatic parallax and fast motion. Shot 4: dynamic side view as the courier leaps across narrow vendor counters beneath hanging lantern cables. Shot 5: final rooftop reveal at dawn-blue horizon, the courier turns back breathless, city skyline blazing behind, capsule illuminating their face. Highly cinematic, smooth motion, strong continuity, realistic rain physics, atmospheric depth, expressive lighting, polished blockbuster pacing, immersive environmental sound and chase audio." \
negativePrompt="low detail, blurry subjects, broken anatomy, extra limbs, duplicated people, warped faces, jittery motion, flicker, smeared objects, flat lighting, empty background, text overlays, subtitles, logos, watermark" \
width=1280 \
height=720 \
duration=8 \
seed=47883 \
providerSettings.pixverse.style=cyberpunk \
providerSettings.pixverse.audio=true \
providerSettings.pixverse.multiClip=true \
providerSettings.pixverse.thinking=enabled{
"taskType": "videoInference",
"taskUUID": "a9cd0a39-0e7d-4fca-9f8a-77ba79268056",
"model": "pixverse:1@6",
"positivePrompt": "A story-driven cyberpunk night market chase in the rain, multi-shot cinematic sequence. Shot 1: wide establishing view of a dense neon bazaar packed with holographic signs, steam, umbrellas, food stalls, reflective pavement, and a masked courier clutching a glowing glass capsule. Shot 2: medium tracking shot as the courier weaves through crowds while two sleek drones pursue overhead, sparks and mist drifting through saturated magenta and teal light. Shot 3: low-angle close shot of boots splashing through puddles, dropped fruit rolling across the ground, stalls rattling, dramatic parallax and fast motion. Shot 4: dynamic side view as the courier leaps across narrow vendor counters beneath hanging lantern cables. Shot 5: final rooftop reveal at dawn-blue horizon, the courier turns back breathless, city skyline blazing behind, capsule illuminating their face. Highly cinematic, smooth motion, strong continuity, realistic rain physics, atmospheric depth, expressive lighting, polished blockbuster pacing, immersive environmental sound and chase audio.",
"negativePrompt": "low detail, blurry subjects, broken anatomy, extra limbs, duplicated people, warped faces, jittery motion, flicker, smeared objects, flat lighting, empty background, text overlays, subtitles, logos, watermark",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 47883,
"providerSettings": {
"pixverse": {
"style": "cyberpunk",
"audio": true,
"multiClip": true,
"thinking": "enabled"
}
}
}{
"taskType": "videoInference",
"taskUUID": "a9cd0a39-0e7d-4fca-9f8a-77ba79268056",
"videoUUID": "cd92586a-1525-42f4-a14d-8a28cbe71892",
"videoURL": "https://vm.runware.ai/video/os/a16d07/ws/5/vi/cd92586a-1525-42f4-a14d-8a28cbe71892.mp4",
"seed": 47883,
"cost": 0.4715
}Neon Monsoon Rooftop Chase
import { 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@6',
positivePrompt: 'A cinematic cyberpunk rooftop pursuit during a midnight monsoon in a vast neon megacity. A lone courier in a reflective crimson coat sprints across slick rooftops carrying a glowing data capsule while surveillance drones weave through steam and rain. Multi-shot sequence: wide establishing shot of towering holographic billboards and storm clouds, low tracking shot of boots splashing through puddles, side angle as the courier vaults a narrow alley gap, close-up of rain on determined eyes, dramatic over-shoulder shot revealing drones closing in, final heroic pause on the rooftop edge with the skyline blazing behind. Strong contrast, electric blue and magenta reflections, dense atmosphere, smooth character motion, realistic rain interaction, cinematic lighting, dramatic pacing, highly polished story-driven composition. Native audio: heavy rainfall, distant thunder, humming neon signs, drone rotors, wet footsteps, coat flapping in the wind, rising synth pulse, tense futuristic ambience.',
negativePrompt: 'blurry, low detail, jittery motion, warped anatomy, extra limbs, duplicate character, distorted face, flat lighting, washed out colors, text, watermark, logo, subtitles, frame glitches, static camera',
width: 1280,
height: 720,
duration: 8,
seed: 15605,
providerSettings: {
pixverse: {
style: 'cyberpunk',
audio: true,
multiClip: true,
thinking: 'enabled'
}
}
})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@6",
"positivePrompt": "A cinematic cyberpunk rooftop pursuit during a midnight monsoon in a vast neon megacity. A lone courier in a reflective crimson coat sprints across slick rooftops carrying a glowing data capsule while surveillance drones weave through steam and rain. Multi-shot sequence: wide establishing shot of towering holographic billboards and storm clouds, low tracking shot of boots splashing through puddles, side angle as the courier vaults a narrow alley gap, close-up of rain on determined eyes, dramatic over-shoulder shot revealing drones closing in, final heroic pause on the rooftop edge with the skyline blazing behind. Strong contrast, electric blue and magenta reflections, dense atmosphere, smooth character motion, realistic rain interaction, cinematic lighting, dramatic pacing, highly polished story-driven composition. Native audio: heavy rainfall, distant thunder, humming neon signs, drone rotors, wet footsteps, coat flapping in the wind, rising synth pulse, tense futuristic ambience.",
"negativePrompt": "blurry, low detail, jittery motion, warped anatomy, extra limbs, duplicate character, distorted face, flat lighting, washed out colors, text, watermark, logo, subtitles, frame glitches, static camera",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 15605,
"providerSettings": {
"pixverse": {
"style": "cyberpunk",
"audio": True,
"multiClip": True,
"thinking": "enabled"
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "86513e43-4646-43df-99d3-415bded9b0b5",
"model": "pixverse:1@6",
"positivePrompt": "A cinematic cyberpunk rooftop pursuit during a midnight monsoon in a vast neon megacity. A lone courier in a reflective crimson coat sprints across slick rooftops carrying a glowing data capsule while surveillance drones weave through steam and rain. Multi-shot sequence: wide establishing shot of towering holographic billboards and storm clouds, low tracking shot of boots splashing through puddles, side angle as the courier vaults a narrow alley gap, close-up of rain on determined eyes, dramatic over-shoulder shot revealing drones closing in, final heroic pause on the rooftop edge with the skyline blazing behind. Strong contrast, electric blue and magenta reflections, dense atmosphere, smooth character motion, realistic rain interaction, cinematic lighting, dramatic pacing, highly polished story-driven composition. Native audio: heavy rainfall, distant thunder, humming neon signs, drone rotors, wet footsteps, coat flapping in the wind, rising synth pulse, tense futuristic ambience.",
"negativePrompt": "blurry, low detail, jittery motion, warped anatomy, extra limbs, duplicate character, distorted face, flat lighting, washed out colors, text, watermark, logo, subtitles, frame glitches, static camera",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 15605,
"providerSettings": {
"pixverse": {
"style": "cyberpunk",
"audio": true,
"multiClip": true,
"thinking": "enabled"
}
}
}
]'runware run pixverse:1@6 \
positivePrompt="A cinematic cyberpunk rooftop pursuit during a midnight monsoon in a vast neon megacity. A lone courier in a reflective crimson coat sprints across slick rooftops carrying a glowing data capsule while surveillance drones weave through steam and rain. Multi-shot sequence: wide establishing shot of towering holographic billboards and storm clouds, low tracking shot of boots splashing through puddles, side angle as the courier vaults a narrow alley gap, close-up of rain on determined eyes, dramatic over-shoulder shot revealing drones closing in, final heroic pause on the rooftop edge with the skyline blazing behind. Strong contrast, electric blue and magenta reflections, dense atmosphere, smooth character motion, realistic rain interaction, cinematic lighting, dramatic pacing, highly polished story-driven composition. Native audio: heavy rainfall, distant thunder, humming neon signs, drone rotors, wet footsteps, coat flapping in the wind, rising synth pulse, tense futuristic ambience." \
negativePrompt="blurry, low detail, jittery motion, warped anatomy, extra limbs, duplicate character, distorted face, flat lighting, washed out colors, text, watermark, logo, subtitles, frame glitches, static camera" \
width=1280 \
height=720 \
duration=8 \
seed=15605 \
providerSettings.pixverse.style=cyberpunk \
providerSettings.pixverse.audio=true \
providerSettings.pixverse.multiClip=true \
providerSettings.pixverse.thinking=enabled{
"taskType": "videoInference",
"taskUUID": "86513e43-4646-43df-99d3-415bded9b0b5",
"model": "pixverse:1@6",
"positivePrompt": "A cinematic cyberpunk rooftop pursuit during a midnight monsoon in a vast neon megacity. A lone courier in a reflective crimson coat sprints across slick rooftops carrying a glowing data capsule while surveillance drones weave through steam and rain. Multi-shot sequence: wide establishing shot of towering holographic billboards and storm clouds, low tracking shot of boots splashing through puddles, side angle as the courier vaults a narrow alley gap, close-up of rain on determined eyes, dramatic over-shoulder shot revealing drones closing in, final heroic pause on the rooftop edge with the skyline blazing behind. Strong contrast, electric blue and magenta reflections, dense atmosphere, smooth character motion, realistic rain interaction, cinematic lighting, dramatic pacing, highly polished story-driven composition. Native audio: heavy rainfall, distant thunder, humming neon signs, drone rotors, wet footsteps, coat flapping in the wind, rising synth pulse, tense futuristic ambience.",
"negativePrompt": "blurry, low detail, jittery motion, warped anatomy, extra limbs, duplicate character, distorted face, flat lighting, washed out colors, text, watermark, logo, subtitles, frame glitches, static camera",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 15605,
"providerSettings": {
"pixverse": {
"style": "cyberpunk",
"audio": true,
"multiClip": true,
"thinking": "enabled"
}
}
}{
"taskType": "videoInference",
"taskUUID": "86513e43-4646-43df-99d3-415bded9b0b5",
"videoUUID": "0b3114d5-397c-45fe-88cc-0b7270e07d7a",
"videoURL": "https://vm.runware.ai/video/os/a15d18/ws/5/vi/0b3114d5-397c-45fe-88cc-0b7270e07d7a.mp4",
"seed": 15605,
"cost": 0.4715
}Lantern-Festival Rooftop Farewell
import { 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@6',
positivePrompt: 'Using the provided first frame as the opening shot, create a story-driven cinematic video of a quiet rooftop farewell during a lantern festival in an ancient river city. The woman stands still at first, then slowly steps toward the roof edge as hundreds of glowing lanterns rise into the night sky. Her coat and hair move naturally in the wind. The camera begins with an intimate close framing that matches the reference image, then expands into elegant multi-shot coverage: over-the-shoulder view of lanterns drifting upward, low angle with moonlit clouds, wide aerial reveal of the city reflecting gold light on the river, and a final lingering profile shot filled with emotion. Subtle acting, refined facial detail, smooth motion, atmospheric depth, cinematic lighting, volumetric haze, realistic fabric physics, poetic mood, delicate ambient festival audio with wind, distant bells, soft crowd murmur, and fluttering paper lantern flames.',
negativePrompt: 'blurry, low detail, distorted anatomy, extra fingers, duplicate person, flickering face, bad hands, warped architecture, text, watermark, logo, harsh cuts, jittery motion, oversaturated neon, horror elements, modern cars, daytime',
width: 1280,
height: 720,
duration: 8,
seed: 80065,
providerSettings: {
pixverse: {
audio: true,
multiClip: true,
thinking: 'enabled'
}
},
inputs: {
frameImages: [
{
inputImage: 'https://assets.runware.ai/assets/inputs/3f9a713d-33c2-4776-90ad-2e293f3c59b2.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@6",
"positivePrompt": "Using the provided first frame as the opening shot, create a story-driven cinematic video of a quiet rooftop farewell during a lantern festival in an ancient river city. The woman stands still at first, then slowly steps toward the roof edge as hundreds of glowing lanterns rise into the night sky. Her coat and hair move naturally in the wind. The camera begins with an intimate close framing that matches the reference image, then expands into elegant multi-shot coverage: over-the-shoulder view of lanterns drifting upward, low angle with moonlit clouds, wide aerial reveal of the city reflecting gold light on the river, and a final lingering profile shot filled with emotion. Subtle acting, refined facial detail, smooth motion, atmospheric depth, cinematic lighting, volumetric haze, realistic fabric physics, poetic mood, delicate ambient festival audio with wind, distant bells, soft crowd murmur, and fluttering paper lantern flames.",
"negativePrompt": "blurry, low detail, distorted anatomy, extra fingers, duplicate person, flickering face, bad hands, warped architecture, text, watermark, logo, harsh cuts, jittery motion, oversaturated neon, horror elements, modern cars, daytime",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 80065,
"providerSettings": {
"pixverse": {
"audio": True,
"multiClip": True,
"thinking": "enabled"
}
},
"inputs": {
"frameImages": [
{
"inputImage": "https://assets.runware.ai/assets/inputs/3f9a713d-33c2-4776-90ad-2e293f3c59b2.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": "179fefbf-5352-479b-b8f4-d570a27dd3cb",
"model": "pixverse:1@6",
"positivePrompt": "Using the provided first frame as the opening shot, create a story-driven cinematic video of a quiet rooftop farewell during a lantern festival in an ancient river city. The woman stands still at first, then slowly steps toward the roof edge as hundreds of glowing lanterns rise into the night sky. Her coat and hair move naturally in the wind. The camera begins with an intimate close framing that matches the reference image, then expands into elegant multi-shot coverage: over-the-shoulder view of lanterns drifting upward, low angle with moonlit clouds, wide aerial reveal of the city reflecting gold light on the river, and a final lingering profile shot filled with emotion. Subtle acting, refined facial detail, smooth motion, atmospheric depth, cinematic lighting, volumetric haze, realistic fabric physics, poetic mood, delicate ambient festival audio with wind, distant bells, soft crowd murmur, and fluttering paper lantern flames.",
"negativePrompt": "blurry, low detail, distorted anatomy, extra fingers, duplicate person, flickering face, bad hands, warped architecture, text, watermark, logo, harsh cuts, jittery motion, oversaturated neon, horror elements, modern cars, daytime",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 80065,
"providerSettings": {
"pixverse": {
"audio": true,
"multiClip": true,
"thinking": "enabled"
}
},
"inputs": {
"frameImages": [
{
"inputImage": "https://assets.runware.ai/assets/inputs/3f9a713d-33c2-4776-90ad-2e293f3c59b2.jpg",
"frame": "first"
}
]
}
}
]'runware run pixverse:1@6 \
positivePrompt="Using the provided first frame as the opening shot, create a story-driven cinematic video of a quiet rooftop farewell during a lantern festival in an ancient river city. The woman stands still at first, then slowly steps toward the roof edge as hundreds of glowing lanterns rise into the night sky. Her coat and hair move naturally in the wind. The camera begins with an intimate close framing that matches the reference image, then expands into elegant multi-shot coverage: over-the-shoulder view of lanterns drifting upward, low angle with moonlit clouds, wide aerial reveal of the city reflecting gold light on the river, and a final lingering profile shot filled with emotion. Subtle acting, refined facial detail, smooth motion, atmospheric depth, cinematic lighting, volumetric haze, realistic fabric physics, poetic mood, delicate ambient festival audio with wind, distant bells, soft crowd murmur, and fluttering paper lantern flames." \
negativePrompt="blurry, low detail, distorted anatomy, extra fingers, duplicate person, flickering face, bad hands, warped architecture, text, watermark, logo, harsh cuts, jittery motion, oversaturated neon, horror elements, modern cars, daytime" \
width=1280 \
height=720 \
duration=8 \
seed=80065 \
providerSettings.pixverse.audio=true \
providerSettings.pixverse.multiClip=true \
providerSettings.pixverse.thinking=enabled \
inputs.frameImages.0.inputImage=https://assets.runware.ai/assets/inputs/3f9a713d-33c2-4776-90ad-2e293f3c59b2.jpg \
inputs.frameImages.0.frame=first{
"taskType": "videoInference",
"taskUUID": "179fefbf-5352-479b-b8f4-d570a27dd3cb",
"model": "pixverse:1@6",
"positivePrompt": "Using the provided first frame as the opening shot, create a story-driven cinematic video of a quiet rooftop farewell during a lantern festival in an ancient river city. The woman stands still at first, then slowly steps toward the roof edge as hundreds of glowing lanterns rise into the night sky. Her coat and hair move naturally in the wind. The camera begins with an intimate close framing that matches the reference image, then expands into elegant multi-shot coverage: over-the-shoulder view of lanterns drifting upward, low angle with moonlit clouds, wide aerial reveal of the city reflecting gold light on the river, and a final lingering profile shot filled with emotion. Subtle acting, refined facial detail, smooth motion, atmospheric depth, cinematic lighting, volumetric haze, realistic fabric physics, poetic mood, delicate ambient festival audio with wind, distant bells, soft crowd murmur, and fluttering paper lantern flames.",
"negativePrompt": "blurry, low detail, distorted anatomy, extra fingers, duplicate person, flickering face, bad hands, warped architecture, text, watermark, logo, harsh cuts, jittery motion, oversaturated neon, horror elements, modern cars, daytime",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 80065,
"providerSettings": {
"pixverse": {
"audio": true,
"multiClip": true,
"thinking": "enabled"
}
},
"inputs": {
"frameImages": [
{
"inputImage": "https://assets.runware.ai/assets/inputs/3f9a713d-33c2-4776-90ad-2e293f3c59b2.jpg",
"frame": "first"
}
]
}
}{
"taskType": "videoInference",
"taskUUID": "179fefbf-5352-479b-b8f4-d570a27dd3cb",
"videoUUID": "25d658cf-0719-4805-92b0-c904a258637a",
"videoURL": "https://vm.runware.ai/video/os/a20d05/ws/5/vi/25d658cf-0719-4805-92b0-c904a258637a.mp4",
"seed": 80065,
"cost": 0.4715
}Storm-Bound Lighthouse Passage
import { 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@6',
positivePrompt: 'A story-driven cinematic sequence beginning on jagged seaside rocks during a violent twilight storm and ending inside a lighthouse at dawn. Use the first frame image as the opening shot and the last frame image as the closing shot. Show the same woman in a yellow raincoat making her way along a narrow cliff path, waves crashing below, close-ups of boots splashing through puddles, hands gripping a rusted railing, cut to a low-angle shot of the lighthouse beam slicing through rain, interior spiral staircase lit by swinging emergency lamps, breathless ascent, then a quiet final reveal in the lantern room as the storm breaks and warm sunrise light floods in. Smooth camera motion, strong visual continuity, rich atmosphere, realistic cinematic lighting, dramatic soundscape with wind, thunder, ocean surf, footsteps, metal rattling, and a subtle emotional orchestral swell near the end.',
negativePrompt: 'extra characters, distorted anatomy, duplicate subject, low detail, blurry frames, flicker, jitter, broken continuity, text, watermark, logo, oversaturated colors, cartoonish faces, abrupt scene changes',
width: 1280,
height: 720,
duration: 8,
seed: 96626,
providerSettings: {
pixverse: {
style: '3d_animation',
audio: true,
multiClip: true,
thinking: 'enabled'
}
},
inputs: {
frameImages: [
{
inputImage: 'https://assets.runware.ai/assets/inputs/b856e6a2-8fa4-49b7-9731-6b157d94e9b9.jpg',
frame: 'first'
},
{
inputImage: 'https://assets.runware.ai/assets/inputs/729c38a5-b922-4c5a-af4b-c386d9c4350b.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@6",
"positivePrompt": "A story-driven cinematic sequence beginning on jagged seaside rocks during a violent twilight storm and ending inside a lighthouse at dawn. Use the first frame image as the opening shot and the last frame image as the closing shot. Show the same woman in a yellow raincoat making her way along a narrow cliff path, waves crashing below, close-ups of boots splashing through puddles, hands gripping a rusted railing, cut to a low-angle shot of the lighthouse beam slicing through rain, interior spiral staircase lit by swinging emergency lamps, breathless ascent, then a quiet final reveal in the lantern room as the storm breaks and warm sunrise light floods in. Smooth camera motion, strong visual continuity, rich atmosphere, realistic cinematic lighting, dramatic soundscape with wind, thunder, ocean surf, footsteps, metal rattling, and a subtle emotional orchestral swell near the end.",
"negativePrompt": "extra characters, distorted anatomy, duplicate subject, low detail, blurry frames, flicker, jitter, broken continuity, text, watermark, logo, oversaturated colors, cartoonish faces, abrupt scene changes",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 96626,
"providerSettings": {
"pixverse": {
"style": "3d_animation",
"audio": True,
"multiClip": True,
"thinking": "enabled"
}
},
"inputs": {
"frameImages": [
{
"inputImage": "https://assets.runware.ai/assets/inputs/b856e6a2-8fa4-49b7-9731-6b157d94e9b9.jpg",
"frame": "first"
},
{
"inputImage": "https://assets.runware.ai/assets/inputs/729c38a5-b922-4c5a-af4b-c386d9c4350b.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": "1f4eeb96-ee66-4b34-b094-34511cd1b3d3",
"model": "pixverse:1@6",
"positivePrompt": "A story-driven cinematic sequence beginning on jagged seaside rocks during a violent twilight storm and ending inside a lighthouse at dawn. Use the first frame image as the opening shot and the last frame image as the closing shot. Show the same woman in a yellow raincoat making her way along a narrow cliff path, waves crashing below, close-ups of boots splashing through puddles, hands gripping a rusted railing, cut to a low-angle shot of the lighthouse beam slicing through rain, interior spiral staircase lit by swinging emergency lamps, breathless ascent, then a quiet final reveal in the lantern room as the storm breaks and warm sunrise light floods in. Smooth camera motion, strong visual continuity, rich atmosphere, realistic cinematic lighting, dramatic soundscape with wind, thunder, ocean surf, footsteps, metal rattling, and a subtle emotional orchestral swell near the end.",
"negativePrompt": "extra characters, distorted anatomy, duplicate subject, low detail, blurry frames, flicker, jitter, broken continuity, text, watermark, logo, oversaturated colors, cartoonish faces, abrupt scene changes",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 96626,
"providerSettings": {
"pixverse": {
"style": "3d_animation",
"audio": true,
"multiClip": true,
"thinking": "enabled"
}
},
"inputs": {
"frameImages": [
{
"inputImage": "https://assets.runware.ai/assets/inputs/b856e6a2-8fa4-49b7-9731-6b157d94e9b9.jpg",
"frame": "first"
},
{
"inputImage": "https://assets.runware.ai/assets/inputs/729c38a5-b922-4c5a-af4b-c386d9c4350b.jpg",
"frame": "last"
}
]
}
}
]'runware run pixverse:1@6 \
positivePrompt="A story-driven cinematic sequence beginning on jagged seaside rocks during a violent twilight storm and ending inside a lighthouse at dawn. Use the first frame image as the opening shot and the last frame image as the closing shot. Show the same woman in a yellow raincoat making her way along a narrow cliff path, waves crashing below, close-ups of boots splashing through puddles, hands gripping a rusted railing, cut to a low-angle shot of the lighthouse beam slicing through rain, interior spiral staircase lit by swinging emergency lamps, breathless ascent, then a quiet final reveal in the lantern room as the storm breaks and warm sunrise light floods in. Smooth camera motion, strong visual continuity, rich atmosphere, realistic cinematic lighting, dramatic soundscape with wind, thunder, ocean surf, footsteps, metal rattling, and a subtle emotional orchestral swell near the end." \
negativePrompt="extra characters, distorted anatomy, duplicate subject, low detail, blurry frames, flicker, jitter, broken continuity, text, watermark, logo, oversaturated colors, cartoonish faces, abrupt scene changes" \
width=1280 \
height=720 \
duration=8 \
seed=96626 \
providerSettings.pixverse.style=3d_animation \
providerSettings.pixverse.audio=true \
providerSettings.pixverse.multiClip=true \
providerSettings.pixverse.thinking=enabled \
inputs.frameImages.0.inputImage=https://assets.runware.ai/assets/inputs/b856e6a2-8fa4-49b7-9731-6b157d94e9b9.jpg \
inputs.frameImages.0.frame=first \
inputs.frameImages.1.inputImage=https://assets.runware.ai/assets/inputs/729c38a5-b922-4c5a-af4b-c386d9c4350b.jpg \
inputs.frameImages.1.frame=last{
"taskType": "videoInference",
"taskUUID": "1f4eeb96-ee66-4b34-b094-34511cd1b3d3",
"model": "pixverse:1@6",
"positivePrompt": "A story-driven cinematic sequence beginning on jagged seaside rocks during a violent twilight storm and ending inside a lighthouse at dawn. Use the first frame image as the opening shot and the last frame image as the closing shot. Show the same woman in a yellow raincoat making her way along a narrow cliff path, waves crashing below, close-ups of boots splashing through puddles, hands gripping a rusted railing, cut to a low-angle shot of the lighthouse beam slicing through rain, interior spiral staircase lit by swinging emergency lamps, breathless ascent, then a quiet final reveal in the lantern room as the storm breaks and warm sunrise light floods in. Smooth camera motion, strong visual continuity, rich atmosphere, realistic cinematic lighting, dramatic soundscape with wind, thunder, ocean surf, footsteps, metal rattling, and a subtle emotional orchestral swell near the end.",
"negativePrompt": "extra characters, distorted anatomy, duplicate subject, low detail, blurry frames, flicker, jitter, broken continuity, text, watermark, logo, oversaturated colors, cartoonish faces, abrupt scene changes",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 96626,
"providerSettings": {
"pixverse": {
"style": "3d_animation",
"audio": true,
"multiClip": true,
"thinking": "enabled"
}
},
"inputs": {
"frameImages": [
{
"inputImage": "https://assets.runware.ai/assets/inputs/b856e6a2-8fa4-49b7-9731-6b157d94e9b9.jpg",
"frame": "first"
},
{
"inputImage": "https://assets.runware.ai/assets/inputs/729c38a5-b922-4c5a-af4b-c386d9c4350b.jpg",
"frame": "last"
}
]
}
}{
"taskType": "videoInference",
"taskUUID": "1f4eeb96-ee66-4b34-b094-34511cd1b3d3",
"videoUUID": "6a5ade1c-56cd-41da-a5bb-49f8ab00b403",
"videoURL": "https://vm.runware.ai/video/os/a23d05/ws/5/vi/6a5ade1c-56cd-41da-a5bb-49f8ab00b403.mp4",
"seed": 96626,
"cost": 0.4715
}