MODEL IDpixverse:1@3
live

PixVerse V4.5

PixVerse
by PixVerse

PixVerse V4.5 generates stylized cinematic video from text prompts or reference images. It adds refined camera motion control, multi image fusion, and faster modes for iteration. Ideal for creators who need dynamic shots, complex motion, and consistent stylized outputs.

PixVerse V4.5
Image to Video

Stormbound Lighthouse Cliff 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@3',
  positivePrompt: 'A sweeping cinematic transition along a perilous ocean cliff path, carrying the viewer from a distant windswept trail toward a towering lighthouse on a rocky outcrop. The same cloaked traveler advances through gusting wind, cape snapping, lantern swaying, seabirds wheeling overhead, waves exploding against dark stone below. Emphasize continuity between the first and last frame images, with rich environmental motion in grasses, spray, clouds, and fabric. Dramatic natural lighting, textured rocks, believable scale, high detail, epic atmosphere, painterly realism, strong depth, fluid scene evolution.',
  negativePrompt: 'low detail, blurry, warped anatomy, duplicate subject, extra limbs, flat lighting, cartoonish proportions, text, watermark, logo, oversaturated colors, indoor scene, city skyline',
  width: 1280,
  height: 720,
  duration: 8,
  seed: 42898,
  providerSettings: {
    pixverse: {
      style: '3d_animation',
      cameraMovement: 'crane_up',
      motionMode: 'normal'
    }
  },
  inputs: {
    frameImages: [
      {
        image: 'https://assets.runware.ai/assets/inputs/b6bebef1-9ed1-44cc-a539-88e4b166f5d9.jpg',
        frame: 'first'
      },
      {
        image: 'https://assets.runware.ai/assets/inputs/b66a67a0-d449-4488-88df-6ccb6fe7543b.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@3",
            "positivePrompt": "A sweeping cinematic transition along a perilous ocean cliff path, carrying the viewer from a distant windswept trail toward a towering lighthouse on a rocky outcrop. The same cloaked traveler advances through gusting wind, cape snapping, lantern swaying, seabirds wheeling overhead, waves exploding against dark stone below. Emphasize continuity between the first and last frame images, with rich environmental motion in grasses, spray, clouds, and fabric. Dramatic natural lighting, textured rocks, believable scale, high detail, epic atmosphere, painterly realism, strong depth, fluid scene evolution.",
            "negativePrompt": "low detail, blurry, warped anatomy, duplicate subject, extra limbs, flat lighting, cartoonish proportions, text, watermark, logo, oversaturated colors, indoor scene, city skyline",
            "width": 1280,
            "height": 720,
            "duration": 8,
            "seed": 42898,
            "providerSettings": {
                "pixverse": {
                    "style": "3d_animation",
                    "cameraMovement": "crane_up",
                    "motionMode": "normal"
                }
            },
            "inputs": {
                "frameImages": [
                    {
                        "image": "https://assets.runware.ai/assets/inputs/b6bebef1-9ed1-44cc-a539-88e4b166f5d9.jpg",
                        "frame": "first"
                    },
                    {
                        "image": "https://assets.runware.ai/assets/inputs/b66a67a0-d449-4488-88df-6ccb6fe7543b.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": "233fd705-2f13-402b-ab00-65a1a775582c",
      "model": "pixverse:1@3",
      "positivePrompt": "A sweeping cinematic transition along a perilous ocean cliff path, carrying the viewer from a distant windswept trail toward a towering lighthouse on a rocky outcrop. The same cloaked traveler advances through gusting wind, cape snapping, lantern swaying, seabirds wheeling overhead, waves exploding against dark stone below. Emphasize continuity between the first and last frame images, with rich environmental motion in grasses, spray, clouds, and fabric. Dramatic natural lighting, textured rocks, believable scale, high detail, epic atmosphere, painterly realism, strong depth, fluid scene evolution.",
      "negativePrompt": "low detail, blurry, warped anatomy, duplicate subject, extra limbs, flat lighting, cartoonish proportions, text, watermark, logo, oversaturated colors, indoor scene, city skyline",
      "width": 1280,
      "height": 720,
      "duration": 8,
      "seed": 42898,
      "providerSettings": {
        "pixverse": {
          "style": "3d_animation",
          "cameraMovement": "crane_up",
          "motionMode": "normal"
        }
      },
      "inputs": {
        "frameImages": [
          {
            "image": "https://assets.runware.ai/assets/inputs/b6bebef1-9ed1-44cc-a539-88e4b166f5d9.jpg",
            "frame": "first"
          },
          {
            "image": "https://assets.runware.ai/assets/inputs/b66a67a0-d449-4488-88df-6ccb6fe7543b.jpg",
            "frame": "last"
          }
        ]
      }
    }
  ]'
runware run pixverse:1@3 \
  positivePrompt="A sweeping cinematic transition along a perilous ocean cliff path, carrying the viewer from a distant windswept trail toward a towering lighthouse on a rocky outcrop. The same cloaked traveler advances through gusting wind, cape snapping, lantern swaying, seabirds wheeling overhead, waves exploding against dark stone below. Emphasize continuity between the first and last frame images, with rich environmental motion in grasses, spray, clouds, and fabric. Dramatic natural lighting, textured rocks, believable scale, high detail, epic atmosphere, painterly realism, strong depth, fluid scene evolution." \
  negativePrompt="low detail, blurry, warped anatomy, duplicate subject, extra limbs, flat lighting, cartoonish proportions, text, watermark, logo, oversaturated colors, indoor scene, city skyline" \
  width=1280 \
  height=720 \
  duration=8 \
  seed=42898 \
  providerSettings.pixverse.style=3d_animation \
  providerSettings.pixverse.cameraMovement=crane_up \
  providerSettings.pixverse.motionMode=normal \
  inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/b6bebef1-9ed1-44cc-a539-88e4b166f5d9.jpg \
  inputs.frameImages.0.frame=first \
  inputs.frameImages.1.image=https://assets.runware.ai/assets/inputs/b66a67a0-d449-4488-88df-6ccb6fe7543b.jpg \
  inputs.frameImages.1.frame=last
{
  "taskType": "videoInference",
  "taskUUID": "233fd705-2f13-402b-ab00-65a1a775582c",
  "model": "pixverse:1@3",
  "positivePrompt": "A sweeping cinematic transition along a perilous ocean cliff path, carrying the viewer from a distant windswept trail toward a towering lighthouse on a rocky outcrop. The same cloaked traveler advances through gusting wind, cape snapping, lantern swaying, seabirds wheeling overhead, waves exploding against dark stone below. Emphasize continuity between the first and last frame images, with rich environmental motion in grasses, spray, clouds, and fabric. Dramatic natural lighting, textured rocks, believable scale, high detail, epic atmosphere, painterly realism, strong depth, fluid scene evolution.",
  "negativePrompt": "low detail, blurry, warped anatomy, duplicate subject, extra limbs, flat lighting, cartoonish proportions, text, watermark, logo, oversaturated colors, indoor scene, city skyline",
  "width": 1280,
  "height": 720,
  "duration": 8,
  "seed": 42898,
  "providerSettings": {
    "pixverse": {
      "style": "3d_animation",
      "cameraMovement": "crane_up",
      "motionMode": "normal"
    }
  },
  "inputs": {
    "frameImages": [
      {
        "image": "https://assets.runware.ai/assets/inputs/b6bebef1-9ed1-44cc-a539-88e4b166f5d9.jpg",
        "frame": "first"
      },
      {
        "image": "https://assets.runware.ai/assets/inputs/b66a67a0-d449-4488-88df-6ccb6fe7543b.jpg",
        "frame": "last"
      }
    ]
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "233fd705-2f13-402b-ab00-65a1a775582c",
  "videoUUID": "1ea8ef0f-affc-4fc6-b6bc-a5d867da5a8b",
  "videoURL": "https://vm.runware.ai/video/os/a12d13/ws/5/vi/1ea8ef0f-affc-4fc6-b6bc-a5d867da5a8b.mp4",
  "seed": 42898,
  "cost": 0.299
}
Image to Video

Windmill Plateau Falcon 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@3',
  positivePrompt: 'Animate the reference image into a cinematic sequence: the hawk launches from the falconer\'s arm and glides forward through gusting air, the crimson cloak whips in the wind, tall grass bends in waves, giant windmill sails turn steadily, distant clouds drift and shafts of light sweep across layered hills, strong parallax, dramatic scale, expressive atmospheric motion, polished stylized fantasy adventure tone',
  negativePrompt: 'blurry details, low resolution, extra limbs, duplicated bird, warped anatomy, flicker, jitter, text, watermark, logo, oversaturated colors, chaotic camera shake',
  width: 1280,
  height: 720,
  duration: 5,
  seed: 97355,
  providerSettings: {
    pixverse: {
      style: '3d_animation',
      cameraMovement: 'left_follow',
      motionMode: 'normal'
    }
  },
  inputs: {
    frameImages: [
      {
        image: 'https://assets.runware.ai/assets/inputs/1a9f99ce-412e-451b-bfe4-1549251db2cb.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@3",
            "positivePrompt": "Animate the reference image into a cinematic sequence: the hawk launches from the falconer's arm and glides forward through gusting air, the crimson cloak whips in the wind, tall grass bends in waves, giant windmill sails turn steadily, distant clouds drift and shafts of light sweep across layered hills, strong parallax, dramatic scale, expressive atmospheric motion, polished stylized fantasy adventure tone",
            "negativePrompt": "blurry details, low resolution, extra limbs, duplicated bird, warped anatomy, flicker, jitter, text, watermark, logo, oversaturated colors, chaotic camera shake",
            "width": 1280,
            "height": 720,
            "duration": 5,
            "seed": 97355,
            "providerSettings": {
                "pixverse": {
                    "style": "3d_animation",
                    "cameraMovement": "left_follow",
                    "motionMode": "normal"
                }
            },
            "inputs": {
                "frameImages": [
                    {
                        "image": "https://assets.runware.ai/assets/inputs/1a9f99ce-412e-451b-bfe4-1549251db2cb.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": "2e333297-8205-4a30-be24-9d7e181febf5",
      "model": "pixverse:1@3",
      "positivePrompt": "Animate the reference image into a cinematic sequence: the hawk launches from the falconer's arm and glides forward through gusting air, the crimson cloak whips in the wind, tall grass bends in waves, giant windmill sails turn steadily, distant clouds drift and shafts of light sweep across layered hills, strong parallax, dramatic scale, expressive atmospheric motion, polished stylized fantasy adventure tone",
      "negativePrompt": "blurry details, low resolution, extra limbs, duplicated bird, warped anatomy, flicker, jitter, text, watermark, logo, oversaturated colors, chaotic camera shake",
      "width": 1280,
      "height": 720,
      "duration": 5,
      "seed": 97355,
      "providerSettings": {
        "pixverse": {
          "style": "3d_animation",
          "cameraMovement": "left_follow",
          "motionMode": "normal"
        }
      },
      "inputs": {
        "frameImages": [
          {
            "image": "https://assets.runware.ai/assets/inputs/1a9f99ce-412e-451b-bfe4-1549251db2cb.jpg",
            "frame": "first"
          }
        ]
      }
    }
  ]'
runware run pixverse:1@3 \
  positivePrompt="Animate the reference image into a cinematic sequence: the hawk launches from the falconer's arm and glides forward through gusting air, the crimson cloak whips in the wind, tall grass bends in waves, giant windmill sails turn steadily, distant clouds drift and shafts of light sweep across layered hills, strong parallax, dramatic scale, expressive atmospheric motion, polished stylized fantasy adventure tone" \
  negativePrompt="blurry details, low resolution, extra limbs, duplicated bird, warped anatomy, flicker, jitter, text, watermark, logo, oversaturated colors, chaotic camera shake" \
  width=1280 \
  height=720 \
  duration=5 \
  seed=97355 \
  providerSettings.pixverse.style=3d_animation \
  providerSettings.pixverse.cameraMovement=left_follow \
  providerSettings.pixverse.motionMode=normal \
  inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/1a9f99ce-412e-451b-bfe4-1549251db2cb.jpg \
  inputs.frameImages.0.frame=first
{
  "taskType": "videoInference",
  "taskUUID": "2e333297-8205-4a30-be24-9d7e181febf5",
  "model": "pixverse:1@3",
  "positivePrompt": "Animate the reference image into a cinematic sequence: the hawk launches from the falconer's arm and glides forward through gusting air, the crimson cloak whips in the wind, tall grass bends in waves, giant windmill sails turn steadily, distant clouds drift and shafts of light sweep across layered hills, strong parallax, dramatic scale, expressive atmospheric motion, polished stylized fantasy adventure tone",
  "negativePrompt": "blurry details, low resolution, extra limbs, duplicated bird, warped anatomy, flicker, jitter, text, watermark, logo, oversaturated colors, chaotic camera shake",
  "width": 1280,
  "height": 720,
  "duration": 5,
  "seed": 97355,
  "providerSettings": {
    "pixverse": {
      "style": "3d_animation",
      "cameraMovement": "left_follow",
      "motionMode": "normal"
    }
  },
  "inputs": {
    "frameImages": [
      {
        "image": "https://assets.runware.ai/assets/inputs/1a9f99ce-412e-451b-bfe4-1549251db2cb.jpg",
        "frame": "first"
      }
    ]
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "2e333297-8205-4a30-be24-9d7e181febf5",
  "videoUUID": "168998e9-1055-44da-ab1b-9b37744bc7bc",
  "videoURL": "https://vm.runware.ai/video/os/a10d08/ws/5/vi/168998e9-1055-44da-ab1b-9b37744bc7bc.mp4",
  "seed": 97355,
  "cost": 0.15
}
Text to Video

Glacial Monastery Sky 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@3',
  positivePrompt: 'An ancient monastery carved into towering blue-white glacier walls above a sea of clouds, connected by narrow hanging bridges and prayer banners snapping in fierce alpine wind. Hooded pilgrims and pack yaks cross a suspended walkway while flurries of snow spiral through shafts of golden sunrise. Massive ice arches, weathered stone shrines, drifting mist, distant birds, and tiny avalanches add depth and scale. Cinematic fantasy atmosphere, richly detailed textures, dramatic parallax, sweeping sense of height, crisp volumetric light, elegant environmental motion, epic establishing shot.',
  negativePrompt: 'low detail, blurry, jittery motion, warped anatomy, duplicate subjects, extra limbs, text, watermark, logo, flat lighting, oversaturated colors, modern city elements, vehicles',
  width: 1280,
  height: 720,
  duration: 8,
  seed: 63994,
  providerSettings: {
    pixverse: {
      style: '3d_animation',
      cameraMovement: 'crane_up',
      motionMode: 'normal'
    }
  }
})
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@3",
            "positivePrompt": "An ancient monastery carved into towering blue-white glacier walls above a sea of clouds, connected by narrow hanging bridges and prayer banners snapping in fierce alpine wind. Hooded pilgrims and pack yaks cross a suspended walkway while flurries of snow spiral through shafts of golden sunrise. Massive ice arches, weathered stone shrines, drifting mist, distant birds, and tiny avalanches add depth and scale. Cinematic fantasy atmosphere, richly detailed textures, dramatic parallax, sweeping sense of height, crisp volumetric light, elegant environmental motion, epic establishing shot.",
            "negativePrompt": "low detail, blurry, jittery motion, warped anatomy, duplicate subjects, extra limbs, text, watermark, logo, flat lighting, oversaturated colors, modern city elements, vehicles",
            "width": 1280,
            "height": 720,
            "duration": 8,
            "seed": 63994,
            "providerSettings": {
                "pixverse": {
                    "style": "3d_animation",
                    "cameraMovement": "crane_up",
                    "motionMode": "normal"
                }
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "videoInference",
      "taskUUID": "62fc95fb-1f38-4e75-9e74-b7569739e82f",
      "model": "pixverse:1@3",
      "positivePrompt": "An ancient monastery carved into towering blue-white glacier walls above a sea of clouds, connected by narrow hanging bridges and prayer banners snapping in fierce alpine wind. Hooded pilgrims and pack yaks cross a suspended walkway while flurries of snow spiral through shafts of golden sunrise. Massive ice arches, weathered stone shrines, drifting mist, distant birds, and tiny avalanches add depth and scale. Cinematic fantasy atmosphere, richly detailed textures, dramatic parallax, sweeping sense of height, crisp volumetric light, elegant environmental motion, epic establishing shot.",
      "negativePrompt": "low detail, blurry, jittery motion, warped anatomy, duplicate subjects, extra limbs, text, watermark, logo, flat lighting, oversaturated colors, modern city elements, vehicles",
      "width": 1280,
      "height": 720,
      "duration": 8,
      "seed": 63994,
      "providerSettings": {
        "pixverse": {
          "style": "3d_animation",
          "cameraMovement": "crane_up",
          "motionMode": "normal"
        }
      }
    }
  ]'
runware run pixverse:1@3 \
  positivePrompt="An ancient monastery carved into towering blue-white glacier walls above a sea of clouds, connected by narrow hanging bridges and prayer banners snapping in fierce alpine wind. Hooded pilgrims and pack yaks cross a suspended walkway while flurries of snow spiral through shafts of golden sunrise. Massive ice arches, weathered stone shrines, drifting mist, distant birds, and tiny avalanches add depth and scale. Cinematic fantasy atmosphere, richly detailed textures, dramatic parallax, sweeping sense of height, crisp volumetric light, elegant environmental motion, epic establishing shot." \
  negativePrompt="low detail, blurry, jittery motion, warped anatomy, duplicate subjects, extra limbs, text, watermark, logo, flat lighting, oversaturated colors, modern city elements, vehicles" \
  width=1280 \
  height=720 \
  duration=8 \
  seed=63994 \
  providerSettings.pixverse.style=3d_animation \
  providerSettings.pixverse.cameraMovement=crane_up \
  providerSettings.pixverse.motionMode=normal
{
  "taskType": "videoInference",
  "taskUUID": "62fc95fb-1f38-4e75-9e74-b7569739e82f",
  "model": "pixverse:1@3",
  "positivePrompt": "An ancient monastery carved into towering blue-white glacier walls above a sea of clouds, connected by narrow hanging bridges and prayer banners snapping in fierce alpine wind. Hooded pilgrims and pack yaks cross a suspended walkway while flurries of snow spiral through shafts of golden sunrise. Massive ice arches, weathered stone shrines, drifting mist, distant birds, and tiny avalanches add depth and scale. Cinematic fantasy atmosphere, richly detailed textures, dramatic parallax, sweeping sense of height, crisp volumetric light, elegant environmental motion, epic establishing shot.",
  "negativePrompt": "low detail, blurry, jittery motion, warped anatomy, duplicate subjects, extra limbs, text, watermark, logo, flat lighting, oversaturated colors, modern city elements, vehicles",
  "width": 1280,
  "height": 720,
  "duration": 8,
  "seed": 63994,
  "providerSettings": {
    "pixverse": {
      "style": "3d_animation",
      "cameraMovement": "crane_up",
      "motionMode": "normal"
    }
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "62fc95fb-1f38-4e75-9e74-b7569739e82f",
  "videoUUID": "2271a30f-1e99-4ea2-b5c8-5e8ff173c702",
  "videoURL": "https://vm.runware.ai/video/os/a13d12/ws/5/vi/2271a30f-1e99-4ea2-b5c8-5e8ff173c702.mp4",
  "seed": 63994,
  "cost": 0.299
}
Text to Video

Skybridge Violinist Above Clouds

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@3',
  positivePrompt: 'A solitary violinist in a flowing saffron coat performs on a narrow hanging skybridge suspended between colossal floating stone towers above a vast sea of clouds, long silk banners snapping in the wind, flocks of white birds circling below, drifting petals and dust catching warm sunrise light, ornate carved arches, distant airborne gardens, epic fantasy atmosphere, highly detailed cinematic composition, expressive body movement, graceful cloth simulation, depth, scale, and emotion',
  negativePrompt: 'low detail, blurry, distorted anatomy, extra limbs, duplicate subject, text, watermark, logo, oversaturated, dark, gloomy, urban street, vehicles, crowds',
  width: 1280,
  height: 720,
  duration: 8,
  seed: 40601,
  providerSettings: {
    pixverse: {
      style: '3d_animation',
      cameraMovement: 'crane_up',
      motionMode: 'normal'
    }
  }
})
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@3",
            "positivePrompt": "A solitary violinist in a flowing saffron coat performs on a narrow hanging skybridge suspended between colossal floating stone towers above a vast sea of clouds, long silk banners snapping in the wind, flocks of white birds circling below, drifting petals and dust catching warm sunrise light, ornate carved arches, distant airborne gardens, epic fantasy atmosphere, highly detailed cinematic composition, expressive body movement, graceful cloth simulation, depth, scale, and emotion",
            "negativePrompt": "low detail, blurry, distorted anatomy, extra limbs, duplicate subject, text, watermark, logo, oversaturated, dark, gloomy, urban street, vehicles, crowds",
            "width": 1280,
            "height": 720,
            "duration": 8,
            "seed": 40601,
            "providerSettings": {
                "pixverse": {
                    "style": "3d_animation",
                    "cameraMovement": "crane_up",
                    "motionMode": "normal"
                }
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "videoInference",
      "taskUUID": "91907af3-fd96-4fec-ac85-3c0099e4046b",
      "model": "pixverse:1@3",
      "positivePrompt": "A solitary violinist in a flowing saffron coat performs on a narrow hanging skybridge suspended between colossal floating stone towers above a vast sea of clouds, long silk banners snapping in the wind, flocks of white birds circling below, drifting petals and dust catching warm sunrise light, ornate carved arches, distant airborne gardens, epic fantasy atmosphere, highly detailed cinematic composition, expressive body movement, graceful cloth simulation, depth, scale, and emotion",
      "negativePrompt": "low detail, blurry, distorted anatomy, extra limbs, duplicate subject, text, watermark, logo, oversaturated, dark, gloomy, urban street, vehicles, crowds",
      "width": 1280,
      "height": 720,
      "duration": 8,
      "seed": 40601,
      "providerSettings": {
        "pixverse": {
          "style": "3d_animation",
          "cameraMovement": "crane_up",
          "motionMode": "normal"
        }
      }
    }
  ]'
runware run pixverse:1@3 \
  positivePrompt="A solitary violinist in a flowing saffron coat performs on a narrow hanging skybridge suspended between colossal floating stone towers above a vast sea of clouds, long silk banners snapping in the wind, flocks of white birds circling below, drifting petals and dust catching warm sunrise light, ornate carved arches, distant airborne gardens, epic fantasy atmosphere, highly detailed cinematic composition, expressive body movement, graceful cloth simulation, depth, scale, and emotion" \
  negativePrompt="low detail, blurry, distorted anatomy, extra limbs, duplicate subject, text, watermark, logo, oversaturated, dark, gloomy, urban street, vehicles, crowds" \
  width=1280 \
  height=720 \
  duration=8 \
  seed=40601 \
  providerSettings.pixverse.style=3d_animation \
  providerSettings.pixverse.cameraMovement=crane_up \
  providerSettings.pixverse.motionMode=normal
{
  "taskType": "videoInference",
  "taskUUID": "91907af3-fd96-4fec-ac85-3c0099e4046b",
  "model": "pixverse:1@3",
  "positivePrompt": "A solitary violinist in a flowing saffron coat performs on a narrow hanging skybridge suspended between colossal floating stone towers above a vast sea of clouds, long silk banners snapping in the wind, flocks of white birds circling below, drifting petals and dust catching warm sunrise light, ornate carved arches, distant airborne gardens, epic fantasy atmosphere, highly detailed cinematic composition, expressive body movement, graceful cloth simulation, depth, scale, and emotion",
  "negativePrompt": "low detail, blurry, distorted anatomy, extra limbs, duplicate subject, text, watermark, logo, oversaturated, dark, gloomy, urban street, vehicles, crowds",
  "width": 1280,
  "height": 720,
  "duration": 8,
  "seed": 40601,
  "providerSettings": {
    "pixverse": {
      "style": "3d_animation",
      "cameraMovement": "crane_up",
      "motionMode": "normal"
    }
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "91907af3-fd96-4fec-ac85-3c0099e4046b",
  "videoUUID": "39b4fc44-8107-400c-870e-ba5131904cc7",
  "videoURL": "https://vm.runware.ai/video/os/a15d18/ws/5/vi/39b4fc44-8107-400c-870e-ba5131904cc7.mp4",
  "seed": 40601,
  "cost": 0.299
}