Runway Gen-4.5

Runway Gen-4.5 is an AI video generation model that creates short video clips from text prompts or static images with high visual fidelity and smooth motion. It supports both text-to-video and image-to-video generation with a range of aspect ratios and clip durations. Gen-4.5 emphasizes realistic motion, strong prompt adherence, and controllable composition, making it suitable for cinematic sequences and creative video workflows.

API Reference
INTEGRATE
Complete technical specification for integration
RequestResponse
Examples9
CODE
Ready-to-use code snippets for common workflows
Guides1
LEARN
Step-by-step tutorials for advanced use cases
Urban Mining Animated Logo Sting
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'runway:1@2',
positivePrompt: 'A premium five-second animated logo sting for SECOND ORE, an urban-mining company that recovers valuable metals from electronic waste. One continuous scene on a matte graphite background, composed for cinematic 16:9. Tiny copper, silver, and dark ceramic fragments glide inward along precise concentric paths, as if guided by an invisible magnetic field. Their motion forms a clean circular recovery emblem: two interlocking geometric arcs surrounding a small square chip. The particles settle into crisp brushed-metal surfaces while the uppercase wordmark “SECOND ORE” resolves beneath in restrained Swiss sans-serif lettering. Locked orthographic camera with an extremely subtle forward push, controlled soft shadows, mineral-microscopy detail, warm copper and cool silver against charcoal, elegant industrial mood. Smooth deliberate motion, no cuts, no additional text; hold the completed centered logo clearly in the final second.',
width: 1280,
height: 720,
duration: 5
})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": "runway:1@2",
"positivePrompt": "A premium five-second animated logo sting for SECOND ORE, an urban-mining company that recovers valuable metals from electronic waste. One continuous scene on a matte graphite background, composed for cinematic 16:9. Tiny copper, silver, and dark ceramic fragments glide inward along precise concentric paths, as if guided by an invisible magnetic field. Their motion forms a clean circular recovery emblem: two interlocking geometric arcs surrounding a small square chip. The particles settle into crisp brushed-metal surfaces while the uppercase wordmark “SECOND ORE” resolves beneath in restrained Swiss sans-serif lettering. Locked orthographic camera with an extremely subtle forward push, controlled soft shadows, mineral-microscopy detail, warm copper and cool silver against charcoal, elegant industrial mood. Smooth deliberate motion, no cuts, no additional text; hold the completed centered logo clearly in the final second.",
"width": 1280,
"height": 720,
"duration": 5
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "755a2260-123e-4829-99c7-94c3cb92990f",
"model": "runway:1@2",
"positivePrompt": "A premium five-second animated logo sting for SECOND ORE, an urban-mining company that recovers valuable metals from electronic waste. One continuous scene on a matte graphite background, composed for cinematic 16:9. Tiny copper, silver, and dark ceramic fragments glide inward along precise concentric paths, as if guided by an invisible magnetic field. Their motion forms a clean circular recovery emblem: two interlocking geometric arcs surrounding a small square chip. The particles settle into crisp brushed-metal surfaces while the uppercase wordmark “SECOND ORE” resolves beneath in restrained Swiss sans-serif lettering. Locked orthographic camera with an extremely subtle forward push, controlled soft shadows, mineral-microscopy detail, warm copper and cool silver against charcoal, elegant industrial mood. Smooth deliberate motion, no cuts, no additional text; hold the completed centered logo clearly in the final second.",
"width": 1280,
"height": 720,
"duration": 5
}
]'runware run runway:1@2 \
positivePrompt="A premium five-second animated logo sting for SECOND ORE, an urban-mining company that recovers valuable metals from electronic waste. One continuous scene on a matte graphite background, composed for cinematic 16:9. Tiny copper, silver, and dark ceramic fragments glide inward along precise concentric paths, as if guided by an invisible magnetic field. Their motion forms a clean circular recovery emblem: two interlocking geometric arcs surrounding a small square chip. The particles settle into crisp brushed-metal surfaces while the uppercase wordmark “SECOND ORE” resolves beneath in restrained Swiss sans-serif lettering. Locked orthographic camera with an extremely subtle forward push, controlled soft shadows, mineral-microscopy detail, warm copper and cool silver against charcoal, elegant industrial mood. Smooth deliberate motion, no cuts, no additional text; hold the completed centered logo clearly in the final second." \
width=1280 \
height=720 \
duration=5{
"taskType": "videoInference",
"taskUUID": "755a2260-123e-4829-99c7-94c3cb92990f",
"model": "runway:1@2",
"positivePrompt": "A premium five-second animated logo sting for SECOND ORE, an urban-mining company that recovers valuable metals from electronic waste. One continuous scene on a matte graphite background, composed for cinematic 16:9. Tiny copper, silver, and dark ceramic fragments glide inward along precise concentric paths, as if guided by an invisible magnetic field. Their motion forms a clean circular recovery emblem: two interlocking geometric arcs surrounding a small square chip. The particles settle into crisp brushed-metal surfaces while the uppercase wordmark “SECOND ORE” resolves beneath in restrained Swiss sans-serif lettering. Locked orthographic camera with an extremely subtle forward push, controlled soft shadows, mineral-microscopy detail, warm copper and cool silver against charcoal, elegant industrial mood. Smooth deliberate motion, no cuts, no additional text; hold the completed centered logo clearly in the final second.",
"width": 1280,
"height": 720,
"duration": 5
}{
"taskType": "videoInference",
"taskUUID": "755a2260-123e-4829-99c7-94c3cb92990f",
"videoUUID": "63c6621f-f849-4746-800d-cc650db85c1b",
"videoURL": "https://vm.runware.ai/video/os/a02d21/ws/5/vi/63c6621f-f849-4746-800d-cc650db85c1b.mp4",
"seed": 452083210,
"cost": 0.605
}Ceramic Factory Music Video 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: 'runway:1@2',
positivePrompt: 'A five-second art-pop music video sequence inside a vast ceramic tile factory. A magnetic lead performer in cobalt-blue coveralls strides toward camera beside a conveyor carrying rows of wet terracotta tiles, while six factory dancers rhythmically press, turn, and lift clay slabs in synchronized choreography. The camera makes a smooth low wide-angle dolly backward, keeping the performer centered as machinery and dancers sweep past in strong parallax. On the final moment, the dancers snap their clay slabs upright and a fine cloud of rust-colored dust blooms through angled sunlight. Saturated cobalt and terracotta palette, hard skylight mixed with warm industrial lamps, tactile 35mm film grain, crisp fashion-editorial composition, realistic machinery and body motion, one continuous shot, no cuts, no text.',
width: 1280,
height: 720,
duration: 5
})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": "runway:1@2",
"positivePrompt": "A five-second art-pop music video sequence inside a vast ceramic tile factory. A magnetic lead performer in cobalt-blue coveralls strides toward camera beside a conveyor carrying rows of wet terracotta tiles, while six factory dancers rhythmically press, turn, and lift clay slabs in synchronized choreography. The camera makes a smooth low wide-angle dolly backward, keeping the performer centered as machinery and dancers sweep past in strong parallax. On the final moment, the dancers snap their clay slabs upright and a fine cloud of rust-colored dust blooms through angled sunlight. Saturated cobalt and terracotta palette, hard skylight mixed with warm industrial lamps, tactile 35mm film grain, crisp fashion-editorial composition, realistic machinery and body motion, one continuous shot, no cuts, no text.",
"width": 1280,
"height": 720,
"duration": 5
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "1efdc395-b243-4497-906e-1a34535ded23",
"model": "runway:1@2",
"positivePrompt": "A five-second art-pop music video sequence inside a vast ceramic tile factory. A magnetic lead performer in cobalt-blue coveralls strides toward camera beside a conveyor carrying rows of wet terracotta tiles, while six factory dancers rhythmically press, turn, and lift clay slabs in synchronized choreography. The camera makes a smooth low wide-angle dolly backward, keeping the performer centered as machinery and dancers sweep past in strong parallax. On the final moment, the dancers snap their clay slabs upright and a fine cloud of rust-colored dust blooms through angled sunlight. Saturated cobalt and terracotta palette, hard skylight mixed with warm industrial lamps, tactile 35mm film grain, crisp fashion-editorial composition, realistic machinery and body motion, one continuous shot, no cuts, no text.",
"width": 1280,
"height": 720,
"duration": 5
}
]'runware run runway:1@2 \
positivePrompt="A five-second art-pop music video sequence inside a vast ceramic tile factory. A magnetic lead performer in cobalt-blue coveralls strides toward camera beside a conveyor carrying rows of wet terracotta tiles, while six factory dancers rhythmically press, turn, and lift clay slabs in synchronized choreography. The camera makes a smooth low wide-angle dolly backward, keeping the performer centered as machinery and dancers sweep past in strong parallax. On the final moment, the dancers snap their clay slabs upright and a fine cloud of rust-colored dust blooms through angled sunlight. Saturated cobalt and terracotta palette, hard skylight mixed with warm industrial lamps, tactile 35mm film grain, crisp fashion-editorial composition, realistic machinery and body motion, one continuous shot, no cuts, no text." \
width=1280 \
height=720 \
duration=5{
"taskType": "videoInference",
"taskUUID": "1efdc395-b243-4497-906e-1a34535ded23",
"model": "runway:1@2",
"positivePrompt": "A five-second art-pop music video sequence inside a vast ceramic tile factory. A magnetic lead performer in cobalt-blue coveralls strides toward camera beside a conveyor carrying rows of wet terracotta tiles, while six factory dancers rhythmically press, turn, and lift clay slabs in synchronized choreography. The camera makes a smooth low wide-angle dolly backward, keeping the performer centered as machinery and dancers sweep past in strong parallax. On the final moment, the dancers snap their clay slabs upright and a fine cloud of rust-colored dust blooms through angled sunlight. Saturated cobalt and terracotta palette, hard skylight mixed with warm industrial lamps, tactile 35mm film grain, crisp fashion-editorial composition, realistic machinery and body motion, one continuous shot, no cuts, no text.",
"width": 1280,
"height": 720,
"duration": 5
}{
"taskType": "videoInference",
"taskUUID": "1efdc395-b243-4497-906e-1a34535ded23",
"videoUUID": "2764cdb3-3d07-4bbb-9d45-f46918ccf682",
"videoURL": "https://vm.runware.ai/video/os/a01d21/ws/5/vi/2764cdb3-3d07-4bbb-9d45-f46918ccf682.mp4",
"seed": 117564928,
"cost": 0.605
}Meteorite Documentary Title 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: 'runway:1@2',
positivePrompt: 'Continue directly from the supplied first frame. The camera makes a slow, precise push toward the iron meteorite while drifting slightly around its right side, creating rich parallax through the receding specimen shelves. Fine dust crosses the amber inspection beam and tiny metallic facets catch brief cold highlights. The vault lights dim one row at a time into darkness until the meteorite reads like a small eclipse against black. In the final two seconds, elegant condensed ivory lettering fades into the clean lower space: “MESSENGERS OF IRON”. Hold on the finished title composition. Prestige science documentary teaser, tactile 35mm grain, restrained amber, charcoal and oxidized copper palette, realistic optics, smooth deliberate motion, solemn and mysterious.',
width: 832,
height: 1104,
duration: 8,
inputs: {
frameImages: [
{
image: 'https://assets.runware.ai/assets/inputs/cb318e77-f726-4f9b-ad07-7edabb850d53.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": "runway:1@2",
"positivePrompt": "Continue directly from the supplied first frame. The camera makes a slow, precise push toward the iron meteorite while drifting slightly around its right side, creating rich parallax through the receding specimen shelves. Fine dust crosses the amber inspection beam and tiny metallic facets catch brief cold highlights. The vault lights dim one row at a time into darkness until the meteorite reads like a small eclipse against black. In the final two seconds, elegant condensed ivory lettering fades into the clean lower space: “MESSENGERS OF IRON”. Hold on the finished title composition. Prestige science documentary teaser, tactile 35mm grain, restrained amber, charcoal and oxidized copper palette, realistic optics, smooth deliberate motion, solemn and mysterious.",
"width": 832,
"height": 1104,
"duration": 8,
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/cb318e77-f726-4f9b-ad07-7edabb850d53.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": "c8a10a05-df87-42e7-87ba-26d9c8ebc1e1",
"model": "runway:1@2",
"positivePrompt": "Continue directly from the supplied first frame. The camera makes a slow, precise push toward the iron meteorite while drifting slightly around its right side, creating rich parallax through the receding specimen shelves. Fine dust crosses the amber inspection beam and tiny metallic facets catch brief cold highlights. The vault lights dim one row at a time into darkness until the meteorite reads like a small eclipse against black. In the final two seconds, elegant condensed ivory lettering fades into the clean lower space: “MESSENGERS OF IRON”. Hold on the finished title composition. Prestige science documentary teaser, tactile 35mm grain, restrained amber, charcoal and oxidized copper palette, realistic optics, smooth deliberate motion, solemn and mysterious.",
"width": 832,
"height": 1104,
"duration": 8,
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/cb318e77-f726-4f9b-ad07-7edabb850d53.jpg",
"frame": "first"
}
]
}
}
]'runware run runway:1@2 \
positivePrompt="Continue directly from the supplied first frame. The camera makes a slow, precise push toward the iron meteorite while drifting slightly around its right side, creating rich parallax through the receding specimen shelves. Fine dust crosses the amber inspection beam and tiny metallic facets catch brief cold highlights. The vault lights dim one row at a time into darkness until the meteorite reads like a small eclipse against black. In the final two seconds, elegant condensed ivory lettering fades into the clean lower space: “MESSENGERS OF IRON”. Hold on the finished title composition. Prestige science documentary teaser, tactile 35mm grain, restrained amber, charcoal and oxidized copper palette, realistic optics, smooth deliberate motion, solemn and mysterious." \
width=832 \
height=1104 \
duration=8 \
inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/cb318e77-f726-4f9b-ad07-7edabb850d53.jpg \
inputs.frameImages.0.frame=first{
"taskType": "videoInference",
"taskUUID": "c8a10a05-df87-42e7-87ba-26d9c8ebc1e1",
"model": "runway:1@2",
"positivePrompt": "Continue directly from the supplied first frame. The camera makes a slow, precise push toward the iron meteorite while drifting slightly around its right side, creating rich parallax through the receding specimen shelves. Fine dust crosses the amber inspection beam and tiny metallic facets catch brief cold highlights. The vault lights dim one row at a time into darkness until the meteorite reads like a small eclipse against black. In the final two seconds, elegant condensed ivory lettering fades into the clean lower space: “MESSENGERS OF IRON”. Hold on the finished title composition. Prestige science documentary teaser, tactile 35mm grain, restrained amber, charcoal and oxidized copper palette, realistic optics, smooth deliberate motion, solemn and mysterious.",
"width": 832,
"height": 1104,
"duration": 8,
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/cb318e77-f726-4f9b-ad07-7edabb850d53.jpg",
"frame": "first"
}
]
}
}{
"taskType": "videoInference",
"taskUUID": "c8a10a05-df87-42e7-87ba-26d9c8ebc1e1",
"videoUUID": "c88768a7-bb32-4b2c-9838-9113009e6865",
"videoURL": "https://vm.runware.ai/video/os/a10dlim3/ws/5/vi/c88768a7-bb32-4b2c-9838-9113009e6865.mp4",
"seed": 69892636,
"cost": 0.965
}Pipe Inspection Crawler Demo
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'runway:1@2',
positivePrompt: 'The technician lifts their gloved hand away and the inspection crawler immediately drives forward into the pipe. Its six spring-loaded wheel arms flex independently against the curved wall. The camera makes a smooth, low tracking push behind it as the white inspection ring switches on and illuminates rust texture ahead. The crawler reaches the offset joint, compresses its front wheel arms, climbs cleanly over the raised seam, then re-expands and continues steadily into the pipe. Keep the orange chassis, wheel geometry, transparent training pipe, and workshop surroundings consistent. Realistic mechanical weight, tire grip, suspension movement, reflections, and restrained industrial documentary cinematography.',
width: 832,
height: 1104,
duration: 8,
inputs: {
frameImages: [
{
image: 'https://assets.runware.ai/assets/inputs/ca5dfafb-258e-442b-b7c4-8f7770e26073.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": "runway:1@2",
"positivePrompt": "The technician lifts their gloved hand away and the inspection crawler immediately drives forward into the pipe. Its six spring-loaded wheel arms flex independently against the curved wall. The camera makes a smooth, low tracking push behind it as the white inspection ring switches on and illuminates rust texture ahead. The crawler reaches the offset joint, compresses its front wheel arms, climbs cleanly over the raised seam, then re-expands and continues steadily into the pipe. Keep the orange chassis, wheel geometry, transparent training pipe, and workshop surroundings consistent. Realistic mechanical weight, tire grip, suspension movement, reflections, and restrained industrial documentary cinematography.",
"width": 832,
"height": 1104,
"duration": 8,
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/ca5dfafb-258e-442b-b7c4-8f7770e26073.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": "6b989461-4860-4a89-9961-850d77e0411f",
"model": "runway:1@2",
"positivePrompt": "The technician lifts their gloved hand away and the inspection crawler immediately drives forward into the pipe. Its six spring-loaded wheel arms flex independently against the curved wall. The camera makes a smooth, low tracking push behind it as the white inspection ring switches on and illuminates rust texture ahead. The crawler reaches the offset joint, compresses its front wheel arms, climbs cleanly over the raised seam, then re-expands and continues steadily into the pipe. Keep the orange chassis, wheel geometry, transparent training pipe, and workshop surroundings consistent. Realistic mechanical weight, tire grip, suspension movement, reflections, and restrained industrial documentary cinematography.",
"width": 832,
"height": 1104,
"duration": 8,
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/ca5dfafb-258e-442b-b7c4-8f7770e26073.jpg",
"frame": "first"
}
]
}
}
]'runware run runway:1@2 \
positivePrompt="The technician lifts their gloved hand away and the inspection crawler immediately drives forward into the pipe. Its six spring-loaded wheel arms flex independently against the curved wall. The camera makes a smooth, low tracking push behind it as the white inspection ring switches on and illuminates rust texture ahead. The crawler reaches the offset joint, compresses its front wheel arms, climbs cleanly over the raised seam, then re-expands and continues steadily into the pipe. Keep the orange chassis, wheel geometry, transparent training pipe, and workshop surroundings consistent. Realistic mechanical weight, tire grip, suspension movement, reflections, and restrained industrial documentary cinematography." \
width=832 \
height=1104 \
duration=8 \
inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/ca5dfafb-258e-442b-b7c4-8f7770e26073.jpg \
inputs.frameImages.0.frame=first{
"taskType": "videoInference",
"taskUUID": "6b989461-4860-4a89-9961-850d77e0411f",
"model": "runway:1@2",
"positivePrompt": "The technician lifts their gloved hand away and the inspection crawler immediately drives forward into the pipe. Its six spring-loaded wheel arms flex independently against the curved wall. The camera makes a smooth, low tracking push behind it as the white inspection ring switches on and illuminates rust texture ahead. The crawler reaches the offset joint, compresses its front wheel arms, climbs cleanly over the raised seam, then re-expands and continues steadily into the pipe. Keep the orange chassis, wheel geometry, transparent training pipe, and workshop surroundings consistent. Realistic mechanical weight, tire grip, suspension movement, reflections, and restrained industrial documentary cinematography.",
"width": 832,
"height": 1104,
"duration": 8,
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/ca5dfafb-258e-442b-b7c4-8f7770e26073.jpg",
"frame": "first"
}
]
}
}{
"taskType": "videoInference",
"taskUUID": "6b989461-4860-4a89-9961-850d77e0411f",
"videoUUID": "0a7ff4f4-6929-42ef-9025-1e130442b81d",
"videoURL": "https://vm.runware.ai/video/os/a08dlim3/ws/5/vi/0a7ff4f4-6929-42ef-9025-1e130442b81d.mp4",
"seed": 1423541846,
"cost": 0.965
}Bioluminescent Jungle Temple Dawn
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'runway:1@2',
positivePrompt: 'Animate this first-frame scene into a lush cinematic sequence: the camera slowly pushes forward toward the ancient jungle temple as morning mist curls across the ground, bioluminescent flowers pulse softly in blue and violet, dew glistens on leaves, hanging vines sway gently, tiny glowing insects drift through the air, reflections ripple subtly in the foreground pool, and warm dawn light strengthens through the canopy with realistic volumetric rays. Preserve the temple composition from the frame image, maintain high realism, smooth natural motion, rich texture detail, and an awe-filled mystical mood.',
width: 1280,
height: 720,
duration: 8,
seed: 1554,
providerSettings: {
runway: {
contentModeration: {
publicFigureThreshold: 'auto'
}
}
},
inputs: {
frameImages: [
{
image: 'https://assets.runware.ai/assets/inputs/5c6cc9ed-a385-4fed-8e7b-e90fc31b080c.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": "runway:1@2",
"positivePrompt": "Animate this first-frame scene into a lush cinematic sequence: the camera slowly pushes forward toward the ancient jungle temple as morning mist curls across the ground, bioluminescent flowers pulse softly in blue and violet, dew glistens on leaves, hanging vines sway gently, tiny glowing insects drift through the air, reflections ripple subtly in the foreground pool, and warm dawn light strengthens through the canopy with realistic volumetric rays. Preserve the temple composition from the frame image, maintain high realism, smooth natural motion, rich texture detail, and an awe-filled mystical mood.",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 1554,
"providerSettings": {
"runway": {
"contentModeration": {
"publicFigureThreshold": "auto"
}
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/5c6cc9ed-a385-4fed-8e7b-e90fc31b080c.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": "17eef945-22c7-4160-b2ae-cddb468f0953",
"model": "runway:1@2",
"positivePrompt": "Animate this first-frame scene into a lush cinematic sequence: the camera slowly pushes forward toward the ancient jungle temple as morning mist curls across the ground, bioluminescent flowers pulse softly in blue and violet, dew glistens on leaves, hanging vines sway gently, tiny glowing insects drift through the air, reflections ripple subtly in the foreground pool, and warm dawn light strengthens through the canopy with realistic volumetric rays. Preserve the temple composition from the frame image, maintain high realism, smooth natural motion, rich texture detail, and an awe-filled mystical mood.",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 1554,
"providerSettings": {
"runway": {
"contentModeration": {
"publicFigureThreshold": "auto"
}
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/5c6cc9ed-a385-4fed-8e7b-e90fc31b080c.jpg",
"frame": "first"
}
]
}
}
]'runware run runway:1@2 \
positivePrompt="Animate this first-frame scene into a lush cinematic sequence: the camera slowly pushes forward toward the ancient jungle temple as morning mist curls across the ground, bioluminescent flowers pulse softly in blue and violet, dew glistens on leaves, hanging vines sway gently, tiny glowing insects drift through the air, reflections ripple subtly in the foreground pool, and warm dawn light strengthens through the canopy with realistic volumetric rays. Preserve the temple composition from the frame image, maintain high realism, smooth natural motion, rich texture detail, and an awe-filled mystical mood." \
width=1280 \
height=720 \
duration=8 \
seed=1554 \
providerSettings.runway.contentModeration.publicFigureThreshold=auto \
inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/5c6cc9ed-a385-4fed-8e7b-e90fc31b080c.jpg \
inputs.frameImages.0.frame=first{
"taskType": "videoInference",
"taskUUID": "17eef945-22c7-4160-b2ae-cddb468f0953",
"model": "runway:1@2",
"positivePrompt": "Animate this first-frame scene into a lush cinematic sequence: the camera slowly pushes forward toward the ancient jungle temple as morning mist curls across the ground, bioluminescent flowers pulse softly in blue and violet, dew glistens on leaves, hanging vines sway gently, tiny glowing insects drift through the air, reflections ripple subtly in the foreground pool, and warm dawn light strengthens through the canopy with realistic volumetric rays. Preserve the temple composition from the frame image, maintain high realism, smooth natural motion, rich texture detail, and an awe-filled mystical mood.",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 1554,
"providerSettings": {
"runway": {
"contentModeration": {
"publicFigureThreshold": "auto"
}
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/5c6cc9ed-a385-4fed-8e7b-e90fc31b080c.jpg",
"frame": "first"
}
]
}
}{
"taskType": "videoInference",
"taskUUID": "17eef945-22c7-4160-b2ae-cddb468f0953",
"videoUUID": "12705e23-36d1-49f1-bac3-a04c4dc6f06d",
"videoURL": "https://vm.runware.ai/video/os/a03d21/ws/5/vi/12705e23-36d1-49f1-bac3-a04c4dc6f06d.mp4",
"seed": 1554,
"cost": 0.965
}Bioluminescent Mangrove Research Voyage
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'runway:1@2',
positivePrompt: 'A small wooden research skiff glides slowly through a flooded mangrove forest at blue hour, roots arching like cathedral columns over dark water alive with turquoise bioluminescence. Two scientists in practical weathered field gear examine glowing samples in glass jars while soft mist drifts between the trees. The camera begins low at water level following ripples and reflections, then gently rises and orbits the boat as schools of tiny luminous fish scatter beneath the surface. Firefly-like spores float in the air, distant thunderheads pulse faintly on the horizon, and wet leaves shimmer with subtle rain. Cinematic realism, rich natural textures, moody color contrast, believable motion, elegant parallax, immersive atmosphere, high visual fidelity.',
width: 1280,
height: 720,
duration: 8,
seed: 82229,
providerSettings: {
runway: {
contentModeration: {
publicFigureThreshold: '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": "runway:1@2",
"positivePrompt": "A small wooden research skiff glides slowly through a flooded mangrove forest at blue hour, roots arching like cathedral columns over dark water alive with turquoise bioluminescence. Two scientists in practical weathered field gear examine glowing samples in glass jars while soft mist drifts between the trees. The camera begins low at water level following ripples and reflections, then gently rises and orbits the boat as schools of tiny luminous fish scatter beneath the surface. Firefly-like spores float in the air, distant thunderheads pulse faintly on the horizon, and wet leaves shimmer with subtle rain. Cinematic realism, rich natural textures, moody color contrast, believable motion, elegant parallax, immersive atmosphere, high visual fidelity.",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 82229,
"providerSettings": {
"runway": {
"contentModeration": {
"publicFigureThreshold": "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": "f290d937-a356-4d27-b855-397a95324784",
"model": "runway:1@2",
"positivePrompt": "A small wooden research skiff glides slowly through a flooded mangrove forest at blue hour, roots arching like cathedral columns over dark water alive with turquoise bioluminescence. Two scientists in practical weathered field gear examine glowing samples in glass jars while soft mist drifts between the trees. The camera begins low at water level following ripples and reflections, then gently rises and orbits the boat as schools of tiny luminous fish scatter beneath the surface. Firefly-like spores float in the air, distant thunderheads pulse faintly on the horizon, and wet leaves shimmer with subtle rain. Cinematic realism, rich natural textures, moody color contrast, believable motion, elegant parallax, immersive atmosphere, high visual fidelity.",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 82229,
"providerSettings": {
"runway": {
"contentModeration": {
"publicFigureThreshold": "auto"
}
}
}
}
]'runware run runway:1@2 \
positivePrompt="A small wooden research skiff glides slowly through a flooded mangrove forest at blue hour, roots arching like cathedral columns over dark water alive with turquoise bioluminescence. Two scientists in practical weathered field gear examine glowing samples in glass jars while soft mist drifts between the trees. The camera begins low at water level following ripples and reflections, then gently rises and orbits the boat as schools of tiny luminous fish scatter beneath the surface. Firefly-like spores float in the air, distant thunderheads pulse faintly on the horizon, and wet leaves shimmer with subtle rain. Cinematic realism, rich natural textures, moody color contrast, believable motion, elegant parallax, immersive atmosphere, high visual fidelity." \
width=1280 \
height=720 \
duration=8 \
seed=82229 \
providerSettings.runway.contentModeration.publicFigureThreshold=auto{
"taskType": "videoInference",
"taskUUID": "f290d937-a356-4d27-b855-397a95324784",
"model": "runway:1@2",
"positivePrompt": "A small wooden research skiff glides slowly through a flooded mangrove forest at blue hour, roots arching like cathedral columns over dark water alive with turquoise bioluminescence. Two scientists in practical weathered field gear examine glowing samples in glass jars while soft mist drifts between the trees. The camera begins low at water level following ripples and reflections, then gently rises and orbits the boat as schools of tiny luminous fish scatter beneath the surface. Firefly-like spores float in the air, distant thunderheads pulse faintly on the horizon, and wet leaves shimmer with subtle rain. Cinematic realism, rich natural textures, moody color contrast, believable motion, elegant parallax, immersive atmosphere, high visual fidelity.",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 82229,
"providerSettings": {
"runway": {
"contentModeration": {
"publicFigureThreshold": "auto"
}
}
}
}{
"taskType": "videoInference",
"taskUUID": "f290d937-a356-4d27-b855-397a95324784",
"videoUUID": "3bee3aad-6bc1-424c-92e4-7c791416bb7b",
"videoURL": "https://vm.runware.ai/video/os/a09d21/ws/5/vi/3bee3aad-6bc1-424c-92e4-7c791416bb7b.mp4",
"seed": 82229,
"cost": 0.965
}Bioluminescent Mangrove Night 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: 'runway:1@2',
positivePrompt: 'Using the provided first-frame image as the opening composition, create a cinematic night journey through a flooded bioluminescent mangrove tunnel. The skiff glides slowly forward through dark reflective water while glowing blue root systems shimmer beneath the surface. Luminous insects swirl gently around the lantern, soft teal mist drifts between tangled branches, and subtle ripples trail behind the boat. Emphasize realistic motion, atmospheric depth, wet textures, delicate parallax through the mangrove roots, and a calm mysterious mood with high visual fidelity and smooth camera travel.',
width: 1280,
height: 720,
duration: 8,
seed: 4790,
providerSettings: {
runway: {
contentModeration: {
publicFigureThreshold: 'auto'
}
}
},
inputs: {
frameImages: [
{
image: 'https://assets.runware.ai/assets/inputs/e3ec74bf-6597-4f82-80ca-457e2f089161.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": "runway:1@2",
"positivePrompt": "Using the provided first-frame image as the opening composition, create a cinematic night journey through a flooded bioluminescent mangrove tunnel. The skiff glides slowly forward through dark reflective water while glowing blue root systems shimmer beneath the surface. Luminous insects swirl gently around the lantern, soft teal mist drifts between tangled branches, and subtle ripples trail behind the boat. Emphasize realistic motion, atmospheric depth, wet textures, delicate parallax through the mangrove roots, and a calm mysterious mood with high visual fidelity and smooth camera travel.",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 4790,
"providerSettings": {
"runway": {
"contentModeration": {
"publicFigureThreshold": "auto"
}
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/e3ec74bf-6597-4f82-80ca-457e2f089161.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": "d822bbf0-d681-42f5-b659-df573b7681ef",
"model": "runway:1@2",
"positivePrompt": "Using the provided first-frame image as the opening composition, create a cinematic night journey through a flooded bioluminescent mangrove tunnel. The skiff glides slowly forward through dark reflective water while glowing blue root systems shimmer beneath the surface. Luminous insects swirl gently around the lantern, soft teal mist drifts between tangled branches, and subtle ripples trail behind the boat. Emphasize realistic motion, atmospheric depth, wet textures, delicate parallax through the mangrove roots, and a calm mysterious mood with high visual fidelity and smooth camera travel.",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 4790,
"providerSettings": {
"runway": {
"contentModeration": {
"publicFigureThreshold": "auto"
}
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/e3ec74bf-6597-4f82-80ca-457e2f089161.jpg",
"frame": "first"
}
]
}
}
]'runware run runway:1@2 \
positivePrompt="Using the provided first-frame image as the opening composition, create a cinematic night journey through a flooded bioluminescent mangrove tunnel. The skiff glides slowly forward through dark reflective water while glowing blue root systems shimmer beneath the surface. Luminous insects swirl gently around the lantern, soft teal mist drifts between tangled branches, and subtle ripples trail behind the boat. Emphasize realistic motion, atmospheric depth, wet textures, delicate parallax through the mangrove roots, and a calm mysterious mood with high visual fidelity and smooth camera travel." \
width=1280 \
height=720 \
duration=8 \
seed=4790 \
providerSettings.runway.contentModeration.publicFigureThreshold=auto \
inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/e3ec74bf-6597-4f82-80ca-457e2f089161.jpg \
inputs.frameImages.0.frame=first{
"taskType": "videoInference",
"taskUUID": "d822bbf0-d681-42f5-b659-df573b7681ef",
"model": "runway:1@2",
"positivePrompt": "Using the provided first-frame image as the opening composition, create a cinematic night journey through a flooded bioluminescent mangrove tunnel. The skiff glides slowly forward through dark reflective water while glowing blue root systems shimmer beneath the surface. Luminous insects swirl gently around the lantern, soft teal mist drifts between tangled branches, and subtle ripples trail behind the boat. Emphasize realistic motion, atmospheric depth, wet textures, delicate parallax through the mangrove roots, and a calm mysterious mood with high visual fidelity and smooth camera travel.",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 4790,
"providerSettings": {
"runway": {
"contentModeration": {
"publicFigureThreshold": "auto"
}
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/e3ec74bf-6597-4f82-80ca-457e2f089161.jpg",
"frame": "first"
}
]
}
}{
"taskType": "videoInference",
"taskUUID": "d822bbf0-d681-42f5-b659-df573b7681ef",
"videoUUID": "3d96a59f-68cc-437b-9992-9caa9c467463",
"videoURL": "https://vm.runware.ai/video/os/a23d05/ws/5/vi/3d96a59f-68cc-437b-9992-9caa9c467463.mp4",
"seed": 4790,
"cost": 0.965
}Bioluminescent Mangrove River Journey
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'runway:1@2',
positivePrompt: 'A slow cinematic glide down a narrow mangrove river at night, roots arching overhead like a natural cathedral, bioluminescent moss and tiny glowing insects illuminating the scene in teal, violet, and amber. A small weathered wooden boat drifts ahead with hanging lanterns, ripples spreading across black mirror-like water. Mist curls between the trees, distant luminous birds lift off from branches, and soft rain begins to fall, creating delicate concentric patterns on the surface. The camera moves smoothly forward with realistic parallax through dense foliage, rich atmospheric depth, highly detailed textures, natural water physics, moody magical realism, elegant color contrast, filmic lighting, ultra high visual fidelity.',
width: 1280,
height: 720,
duration: 8,
seed: 48281,
providerSettings: {
runway: {
contentModeration: {
publicFigureThreshold: '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": "runway:1@2",
"positivePrompt": "A slow cinematic glide down a narrow mangrove river at night, roots arching overhead like a natural cathedral, bioluminescent moss and tiny glowing insects illuminating the scene in teal, violet, and amber. A small weathered wooden boat drifts ahead with hanging lanterns, ripples spreading across black mirror-like water. Mist curls between the trees, distant luminous birds lift off from branches, and soft rain begins to fall, creating delicate concentric patterns on the surface. The camera moves smoothly forward with realistic parallax through dense foliage, rich atmospheric depth, highly detailed textures, natural water physics, moody magical realism, elegant color contrast, filmic lighting, ultra high visual fidelity.",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 48281,
"providerSettings": {
"runway": {
"contentModeration": {
"publicFigureThreshold": "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": "fc8f53de-cc6f-4188-b718-c811a106fece",
"model": "runway:1@2",
"positivePrompt": "A slow cinematic glide down a narrow mangrove river at night, roots arching overhead like a natural cathedral, bioluminescent moss and tiny glowing insects illuminating the scene in teal, violet, and amber. A small weathered wooden boat drifts ahead with hanging lanterns, ripples spreading across black mirror-like water. Mist curls between the trees, distant luminous birds lift off from branches, and soft rain begins to fall, creating delicate concentric patterns on the surface. The camera moves smoothly forward with realistic parallax through dense foliage, rich atmospheric depth, highly detailed textures, natural water physics, moody magical realism, elegant color contrast, filmic lighting, ultra high visual fidelity.",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 48281,
"providerSettings": {
"runway": {
"contentModeration": {
"publicFigureThreshold": "auto"
}
}
}
}
]'runware run runway:1@2 \
positivePrompt="A slow cinematic glide down a narrow mangrove river at night, roots arching overhead like a natural cathedral, bioluminescent moss and tiny glowing insects illuminating the scene in teal, violet, and amber. A small weathered wooden boat drifts ahead with hanging lanterns, ripples spreading across black mirror-like water. Mist curls between the trees, distant luminous birds lift off from branches, and soft rain begins to fall, creating delicate concentric patterns on the surface. The camera moves smoothly forward with realistic parallax through dense foliage, rich atmospheric depth, highly detailed textures, natural water physics, moody magical realism, elegant color contrast, filmic lighting, ultra high visual fidelity." \
width=1280 \
height=720 \
duration=8 \
seed=48281 \
providerSettings.runway.contentModeration.publicFigureThreshold=auto{
"taskType": "videoInference",
"taskUUID": "fc8f53de-cc6f-4188-b718-c811a106fece",
"model": "runway:1@2",
"positivePrompt": "A slow cinematic glide down a narrow mangrove river at night, roots arching overhead like a natural cathedral, bioluminescent moss and tiny glowing insects illuminating the scene in teal, violet, and amber. A small weathered wooden boat drifts ahead with hanging lanterns, ripples spreading across black mirror-like water. Mist curls between the trees, distant luminous birds lift off from branches, and soft rain begins to fall, creating delicate concentric patterns on the surface. The camera moves smoothly forward with realistic parallax through dense foliage, rich atmospheric depth, highly detailed textures, natural water physics, moody magical realism, elegant color contrast, filmic lighting, ultra high visual fidelity.",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 48281,
"providerSettings": {
"runway": {
"contentModeration": {
"publicFigureThreshold": "auto"
}
}
}
}{
"taskType": "videoInference",
"taskUUID": "fc8f53de-cc6f-4188-b718-c811a106fece",
"videoUUID": "6dba7728-9f04-40bf-bb0e-8c36b9aec934",
"videoURL": "https://vm.runware.ai/video/os/a17d13/ws/5/vi/6dba7728-9f04-40bf-bb0e-8c36b9aec934.mp4",
"seed": 48281,
"cost": 0.965
}Bioluminescent Mangrove Research Expedition
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'runway:1@2',
positivePrompt: 'A cinematic night expedition drifting through a bioluminescent mangrove forest on a narrow wooden research skiff. Two field scientists in subtle waterproof gear glide between arching roots while electric-blue plankton ripple in the dark water with every movement of the boat. Firefly-like insects hover among glossy leaves, soft mist hangs low above the surface, and distant storm clouds flicker on the horizon. The camera begins close to the glowing wake beside the boat, then slowly tracks forward and slightly upward to reveal the dense maze of roots, reflective water, and luminous wildlife. Realistic water physics, gentle paddling motion, intricate foliage detail, believable cloth movement, moody natural lighting, high visual fidelity, atmospheric depth, serene wonder, cinematic documentary style.',
width: 1280,
height: 720,
duration: 8,
seed: 97986,
providerSettings: {
runway: {
contentModeration: {
publicFigureThreshold: '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": "runway:1@2",
"positivePrompt": "A cinematic night expedition drifting through a bioluminescent mangrove forest on a narrow wooden research skiff. Two field scientists in subtle waterproof gear glide between arching roots while electric-blue plankton ripple in the dark water with every movement of the boat. Firefly-like insects hover among glossy leaves, soft mist hangs low above the surface, and distant storm clouds flicker on the horizon. The camera begins close to the glowing wake beside the boat, then slowly tracks forward and slightly upward to reveal the dense maze of roots, reflective water, and luminous wildlife. Realistic water physics, gentle paddling motion, intricate foliage detail, believable cloth movement, moody natural lighting, high visual fidelity, atmospheric depth, serene wonder, cinematic documentary style.",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 97986,
"providerSettings": {
"runway": {
"contentModeration": {
"publicFigureThreshold": "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": "01ea41c5-2561-43cd-90d3-b7ce085a72fc",
"model": "runway:1@2",
"positivePrompt": "A cinematic night expedition drifting through a bioluminescent mangrove forest on a narrow wooden research skiff. Two field scientists in subtle waterproof gear glide between arching roots while electric-blue plankton ripple in the dark water with every movement of the boat. Firefly-like insects hover among glossy leaves, soft mist hangs low above the surface, and distant storm clouds flicker on the horizon. The camera begins close to the glowing wake beside the boat, then slowly tracks forward and slightly upward to reveal the dense maze of roots, reflective water, and luminous wildlife. Realistic water physics, gentle paddling motion, intricate foliage detail, believable cloth movement, moody natural lighting, high visual fidelity, atmospheric depth, serene wonder, cinematic documentary style.",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 97986,
"providerSettings": {
"runway": {
"contentModeration": {
"publicFigureThreshold": "auto"
}
}
}
}
]'runware run runway:1@2 \
positivePrompt="A cinematic night expedition drifting through a bioluminescent mangrove forest on a narrow wooden research skiff. Two field scientists in subtle waterproof gear glide between arching roots while electric-blue plankton ripple in the dark water with every movement of the boat. Firefly-like insects hover among glossy leaves, soft mist hangs low above the surface, and distant storm clouds flicker on the horizon. The camera begins close to the glowing wake beside the boat, then slowly tracks forward and slightly upward to reveal the dense maze of roots, reflective water, and luminous wildlife. Realistic water physics, gentle paddling motion, intricate foliage detail, believable cloth movement, moody natural lighting, high visual fidelity, atmospheric depth, serene wonder, cinematic documentary style." \
width=1280 \
height=720 \
duration=8 \
seed=97986 \
providerSettings.runway.contentModeration.publicFigureThreshold=auto{
"taskType": "videoInference",
"taskUUID": "01ea41c5-2561-43cd-90d3-b7ce085a72fc",
"model": "runway:1@2",
"positivePrompt": "A cinematic night expedition drifting through a bioluminescent mangrove forest on a narrow wooden research skiff. Two field scientists in subtle waterproof gear glide between arching roots while electric-blue plankton ripple in the dark water with every movement of the boat. Firefly-like insects hover among glossy leaves, soft mist hangs low above the surface, and distant storm clouds flicker on the horizon. The camera begins close to the glowing wake beside the boat, then slowly tracks forward and slightly upward to reveal the dense maze of roots, reflective water, and luminous wildlife. Realistic water physics, gentle paddling motion, intricate foliage detail, believable cloth movement, moody natural lighting, high visual fidelity, atmospheric depth, serene wonder, cinematic documentary style.",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 97986,
"providerSettings": {
"runway": {
"contentModeration": {
"publicFigureThreshold": "auto"
}
}
}
}{
"taskType": "videoInference",
"taskUUID": "01ea41c5-2561-43cd-90d3-b7ce085a72fc",
"videoUUID": "53a9d1d6-079d-40ae-a547-da2c29c3d744",
"videoURL": "https://vm.runware.ai/video/os/a15d18/ws/5/vi/53a9d1d6-079d-40ae-a547-da2c29c3d744.mp4",
"seed": 97986,
"cost": 0.965
}