live
MODEL IDklingai:kling-video@3.0-turbo

Kling VIDEO 3.0 Turbo

Kling AI
by

Kling VIDEO 3.0 Turbo is a speed-optimized multimodal video generation model in the Kling 3.0 family. It is built for high-volume production workflows that need faster turnaround without giving up stable motion, prompt adherence, multi-shot consistency, or audio-visual alignment. It supports text-to-video and image-to-video generation, with particular emphasis on improved lip-sync quality and more efficient large-scale content creation.

Kling VIDEO 3.0 Turbo

text-to-video

Luxury Apiary Outerwear Showcase Reel$0.70~2m 16s
Try in Playground
import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'klingai:kling-video@3.0-turbo',
  positivePrompt: 'A premium fashion product film for contemporary apiary workwear, one continuous five-second shot with no cuts. In a minimalist stainless-steel honey extraction room, a poised female model wears a beautifully tailored bone-white beekeeping jacket with an architectural high collar, folded mesh veil, reinforced amber-gold canvas panels, matte graphite hardware and matching utility trousers. Begin at a medium three-quarter view as she calmly fastens one cuff, then execute a smooth controlled camera arc around her while pulling slightly wider to reveal the complete silhouette and functional pocket construction. Subtle airflow lifts the structured fabric and loose veil edge. Warm honey-colored light passes through glass jars in the background, casting restrained amber reflections across the cool metal room. Crisp textile detail, realistic garment construction, refined utilitarian styling, confident understated mood, luxury editorial cinematography, shallow depth of field, natural human movement, landscape composition, no logos or lettering.',
  width: 1920,
  height: 1080,
  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": "klingai:kling-video@3.0-turbo",
            "positivePrompt": "A premium fashion product film for contemporary apiary workwear, one continuous five-second shot with no cuts. In a minimalist stainless-steel honey extraction room, a poised female model wears a beautifully tailored bone-white beekeeping jacket with an architectural high collar, folded mesh veil, reinforced amber-gold canvas panels, matte graphite hardware and matching utility trousers. Begin at a medium three-quarter view as she calmly fastens one cuff, then execute a smooth controlled camera arc around her while pulling slightly wider to reveal the complete silhouette and functional pocket construction. Subtle airflow lifts the structured fabric and loose veil edge. Warm honey-colored light passes through glass jars in the background, casting restrained amber reflections across the cool metal room. Crisp textile detail, realistic garment construction, refined utilitarian styling, confident understated mood, luxury editorial cinematography, shallow depth of field, natural human movement, landscape composition, no logos or lettering.",
            "width": 1920,
            "height": 1080,
            "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": "d7566821-bd0d-4a90-a3e2-10924c8b92fc",
      "model": "klingai:kling-video@3.0-turbo",
      "positivePrompt": "A premium fashion product film for contemporary apiary workwear, one continuous five-second shot with no cuts. In a minimalist stainless-steel honey extraction room, a poised female model wears a beautifully tailored bone-white beekeeping jacket with an architectural high collar, folded mesh veil, reinforced amber-gold canvas panels, matte graphite hardware and matching utility trousers. Begin at a medium three-quarter view as she calmly fastens one cuff, then execute a smooth controlled camera arc around her while pulling slightly wider to reveal the complete silhouette and functional pocket construction. Subtle airflow lifts the structured fabric and loose veil edge. Warm honey-colored light passes through glass jars in the background, casting restrained amber reflections across the cool metal room. Crisp textile detail, realistic garment construction, refined utilitarian styling, confident understated mood, luxury editorial cinematography, shallow depth of field, natural human movement, landscape composition, no logos or lettering.",
      "width": 1920,
      "height": 1080,
      "duration": 5
    }
  ]'
runware run klingai:kling-video@3.0-turbo \
  positivePrompt="A premium fashion product film for contemporary apiary workwear, one continuous five-second shot with no cuts. In a minimalist stainless-steel honey extraction room, a poised female model wears a beautifully tailored bone-white beekeeping jacket with an architectural high collar, folded mesh veil, reinforced amber-gold canvas panels, matte graphite hardware and matching utility trousers. Begin at a medium three-quarter view as she calmly fastens one cuff, then execute a smooth controlled camera arc around her while pulling slightly wider to reveal the complete silhouette and functional pocket construction. Subtle airflow lifts the structured fabric and loose veil edge. Warm honey-colored light passes through glass jars in the background, casting restrained amber reflections across the cool metal room. Crisp textile detail, realistic garment construction, refined utilitarian styling, confident understated mood, luxury editorial cinematography, shallow depth of field, natural human movement, landscape composition, no logos or lettering." \
  width=1920 \
  height=1080 \
  duration=5
{
  "taskType": "videoInference",
  "taskUUID": "d7566821-bd0d-4a90-a3e2-10924c8b92fc",
  "model": "klingai:kling-video@3.0-turbo",
  "positivePrompt": "A premium fashion product film for contemporary apiary workwear, one continuous five-second shot with no cuts. In a minimalist stainless-steel honey extraction room, a poised female model wears a beautifully tailored bone-white beekeeping jacket with an architectural high collar, folded mesh veil, reinforced amber-gold canvas panels, matte graphite hardware and matching utility trousers. Begin at a medium three-quarter view as she calmly fastens one cuff, then execute a smooth controlled camera arc around her while pulling slightly wider to reveal the complete silhouette and functional pocket construction. Subtle airflow lifts the structured fabric and loose veil edge. Warm honey-colored light passes through glass jars in the background, casting restrained amber reflections across the cool metal room. Crisp textile detail, realistic garment construction, refined utilitarian styling, confident understated mood, luxury editorial cinematography, shallow depth of field, natural human movement, landscape composition, no logos or lettering.",
  "width": 1920,
  "height": 1080,
  "duration": 5
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "d7566821-bd0d-4a90-a3e2-10924c8b92fc",
  "videoUUID": "a8c7b7d3-3d2b-44ea-ac2b-d9683514a8e7",
  "videoURL": "https://vm.runware.ai/video/os/a06dlim3/ws/5/vi/a8c7b7d3-3d2b-44ea-ac2b-d9683514a8e7.mp4",
  "cost": 0.7
}

text-to-video

Forensic Accounting Docuseries Teaser$0.70~1m 25s
Try in Playground
import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'klingai:kling-video@3.0-turbo',
  positivePrompt: 'A single continuous five-second macro tracking shot for a prestige forensic-accounting docuseries titled “THE LAST DECIMAL.” The camera glides low across an aging dot-matrix audit report feeding slowly from a beige 1980s accounting printer in a dark evidence room. Perforated paper edges tremble mechanically; dense columns of black figures pass beneath a narrow red forensic scanner beam. Cold cyan fluorescent light, deep charcoal shadows, restrained crimson accents, fine paper fibers, dust, carbon-copy smudges and shallow depth of field create an austere analog procedural aesthetic. As the camera advances, ordinary figures drift softly out of focus while selected printed characters remain sharp and naturally align into the exact centered title THE LAST DECIMAL on the paper. End with the title fully legible, stark black uppercase monospaced lettering, and a small blinking red reflection beside the final period. Slow controlled motion, realistic optics, subtle film grain, tense investigative mood, no cuts, no people, cinematic 16:9 composition. Sound design: steady printer chatter, paper feed clicks, low electrical hum, and one dry mechanical stop as the title resolves.',
  width: 1920,
  height: 1080,
  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": "klingai:kling-video@3.0-turbo",
            "positivePrompt": "A single continuous five-second macro tracking shot for a prestige forensic-accounting docuseries titled “THE LAST DECIMAL.” The camera glides low across an aging dot-matrix audit report feeding slowly from a beige 1980s accounting printer in a dark evidence room. Perforated paper edges tremble mechanically; dense columns of black figures pass beneath a narrow red forensic scanner beam. Cold cyan fluorescent light, deep charcoal shadows, restrained crimson accents, fine paper fibers, dust, carbon-copy smudges and shallow depth of field create an austere analog procedural aesthetic. As the camera advances, ordinary figures drift softly out of focus while selected printed characters remain sharp and naturally align into the exact centered title THE LAST DECIMAL on the paper. End with the title fully legible, stark black uppercase monospaced lettering, and a small blinking red reflection beside the final period. Slow controlled motion, realistic optics, subtle film grain, tense investigative mood, no cuts, no people, cinematic 16:9 composition. Sound design: steady printer chatter, paper feed clicks, low electrical hum, and one dry mechanical stop as the title resolves.",
            "width": 1920,
            "height": 1080,
            "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": "4685bc89-7709-44a6-9aee-b0ddf958c23c",
      "model": "klingai:kling-video@3.0-turbo",
      "positivePrompt": "A single continuous five-second macro tracking shot for a prestige forensic-accounting docuseries titled “THE LAST DECIMAL.” The camera glides low across an aging dot-matrix audit report feeding slowly from a beige 1980s accounting printer in a dark evidence room. Perforated paper edges tremble mechanically; dense columns of black figures pass beneath a narrow red forensic scanner beam. Cold cyan fluorescent light, deep charcoal shadows, restrained crimson accents, fine paper fibers, dust, carbon-copy smudges and shallow depth of field create an austere analog procedural aesthetic. As the camera advances, ordinary figures drift softly out of focus while selected printed characters remain sharp and naturally align into the exact centered title THE LAST DECIMAL on the paper. End with the title fully legible, stark black uppercase monospaced lettering, and a small blinking red reflection beside the final period. Slow controlled motion, realistic optics, subtle film grain, tense investigative mood, no cuts, no people, cinematic 16:9 composition. Sound design: steady printer chatter, paper feed clicks, low electrical hum, and one dry mechanical stop as the title resolves.",
      "width": 1920,
      "height": 1080,
      "duration": 5
    }
  ]'
runware run klingai:kling-video@3.0-turbo \
  positivePrompt="A single continuous five-second macro tracking shot for a prestige forensic-accounting docuseries titled “THE LAST DECIMAL.” The camera glides low across an aging dot-matrix audit report feeding slowly from a beige 1980s accounting printer in a dark evidence room. Perforated paper edges tremble mechanically; dense columns of black figures pass beneath a narrow red forensic scanner beam. Cold cyan fluorescent light, deep charcoal shadows, restrained crimson accents, fine paper fibers, dust, carbon-copy smudges and shallow depth of field create an austere analog procedural aesthetic. As the camera advances, ordinary figures drift softly out of focus while selected printed characters remain sharp and naturally align into the exact centered title THE LAST DECIMAL on the paper. End with the title fully legible, stark black uppercase monospaced lettering, and a small blinking red reflection beside the final period. Slow controlled motion, realistic optics, subtle film grain, tense investigative mood, no cuts, no people, cinematic 16:9 composition. Sound design: steady printer chatter, paper feed clicks, low electrical hum, and one dry mechanical stop as the title resolves." \
  width=1920 \
  height=1080 \
  duration=5
{
  "taskType": "videoInference",
  "taskUUID": "4685bc89-7709-44a6-9aee-b0ddf958c23c",
  "model": "klingai:kling-video@3.0-turbo",
  "positivePrompt": "A single continuous five-second macro tracking shot for a prestige forensic-accounting docuseries titled “THE LAST DECIMAL.” The camera glides low across an aging dot-matrix audit report feeding slowly from a beige 1980s accounting printer in a dark evidence room. Perforated paper edges tremble mechanically; dense columns of black figures pass beneath a narrow red forensic scanner beam. Cold cyan fluorescent light, deep charcoal shadows, restrained crimson accents, fine paper fibers, dust, carbon-copy smudges and shallow depth of field create an austere analog procedural aesthetic. As the camera advances, ordinary figures drift softly out of focus while selected printed characters remain sharp and naturally align into the exact centered title THE LAST DECIMAL on the paper. End with the title fully legible, stark black uppercase monospaced lettering, and a small blinking red reflection beside the final period. Slow controlled motion, realistic optics, subtle film grain, tense investigative mood, no cuts, no people, cinematic 16:9 composition. Sound design: steady printer chatter, paper feed clicks, low electrical hum, and one dry mechanical stop as the title resolves.",
  "width": 1920,
  "height": 1080,
  "duration": 5
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "4685bc89-7709-44a6-9aee-b0ddf958c23c",
  "videoUUID": "5f2dc8ca-9d3a-495e-9f2b-ee41d14224ee",
  "videoURL": "https://vm.runware.ai/video/os/a10dlim3/ws/5/vi/5f2dc8ca-9d3a-495e-9f2b-ee41d14224ee.mp4",
  "cost": 0.7
}

first-frame

Pipe Freeze Clamp Explainer Clip$0.896~2m 8s
Try in Playground
import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'klingai:kling-video@3.0-turbo',
  positivePrompt: 'shot 1, 3 seconds, Continue directly from the supplied first frame in the same clean industrial training set. The technician closes the graphite-and-orange thermoelectric clamp around the transparent water pipe and snaps its latch securely into place. A slim status ring changes from amber to cold blue as the camera makes a controlled slow push-in. Precise hand movement, stable product geometry, realistic reflections and quiet mechanical clicks;\nshot 2, 3 seconds, Cut to a crisp macro side view of the same clamp and transparent pipe. Frost blooms naturally from the chilled jaws while a clearly visible ice plug grows inside the pipe and stops the moving blue-tinted water. Preserve the exact clamp design, lighting, bench, and pipe orientation. Subtle refrigeration hum, delicate ice crackle, premium technical cinematography;\nshot 3, 2 seconds, Cut wider to include the brass tap downstream on the right. The technician turns the tap open; one residual drop falls and then the outlet remains dry, visibly proving the frozen plug is holding. The blue status ring stays steady and frost remains localized around the clamp. Calm, credible product-explainer finish with no captions, logos, interfaces, or graphic overlays;',
  negativePrompt: 'warped tools, changing product design, extra hands, missing fingers, leaking pipe, bursting pipe, excessive fog, magical effects, floating parts, illegible labels, brand marks, captions, subtitles, diagrams, UI, camera shake, jumpy motion, cartoon rendering',
  resolution: '720p',
  duration: 8,
  inputs: {
    frameImages: [
      {
        image: 'https://assets.runware.ai/assets/inputs/d47bcc1e-c8c9-47a4-8aa5-ecae93638bde.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": "klingai:kling-video@3.0-turbo",
            "positivePrompt": "shot 1, 3 seconds, Continue directly from the supplied first frame in the same clean industrial training set. The technician closes the graphite-and-orange thermoelectric clamp around the transparent water pipe and snaps its latch securely into place. A slim status ring changes from amber to cold blue as the camera makes a controlled slow push-in. Precise hand movement, stable product geometry, realistic reflections and quiet mechanical clicks;\nshot 2, 3 seconds, Cut to a crisp macro side view of the same clamp and transparent pipe. Frost blooms naturally from the chilled jaws while a clearly visible ice plug grows inside the pipe and stops the moving blue-tinted water. Preserve the exact clamp design, lighting, bench, and pipe orientation. Subtle refrigeration hum, delicate ice crackle, premium technical cinematography;\nshot 3, 2 seconds, Cut wider to include the brass tap downstream on the right. The technician turns the tap open; one residual drop falls and then the outlet remains dry, visibly proving the frozen plug is holding. The blue status ring stays steady and frost remains localized around the clamp. Calm, credible product-explainer finish with no captions, logos, interfaces, or graphic overlays;",
            "negativePrompt": "warped tools, changing product design, extra hands, missing fingers, leaking pipe, bursting pipe, excessive fog, magical effects, floating parts, illegible labels, brand marks, captions, subtitles, diagrams, UI, camera shake, jumpy motion, cartoon rendering",
            "resolution": "720p",
            "duration": 8,
            "inputs": {
                "frameImages": [
                    {
                        "image": "https://assets.runware.ai/assets/inputs/d47bcc1e-c8c9-47a4-8aa5-ecae93638bde.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": "56cb658f-7615-4d4c-9d22-27c4cd6cc053",
      "model": "klingai:kling-video@3.0-turbo",
      "positivePrompt": "shot 1, 3 seconds, Continue directly from the supplied first frame in the same clean industrial training set. The technician closes the graphite-and-orange thermoelectric clamp around the transparent water pipe and snaps its latch securely into place. A slim status ring changes from amber to cold blue as the camera makes a controlled slow push-in. Precise hand movement, stable product geometry, realistic reflections and quiet mechanical clicks;\nshot 2, 3 seconds, Cut to a crisp macro side view of the same clamp and transparent pipe. Frost blooms naturally from the chilled jaws while a clearly visible ice plug grows inside the pipe and stops the moving blue-tinted water. Preserve the exact clamp design, lighting, bench, and pipe orientation. Subtle refrigeration hum, delicate ice crackle, premium technical cinematography;\nshot 3, 2 seconds, Cut wider to include the brass tap downstream on the right. The technician turns the tap open; one residual drop falls and then the outlet remains dry, visibly proving the frozen plug is holding. The blue status ring stays steady and frost remains localized around the clamp. Calm, credible product-explainer finish with no captions, logos, interfaces, or graphic overlays;",
      "negativePrompt": "warped tools, changing product design, extra hands, missing fingers, leaking pipe, bursting pipe, excessive fog, magical effects, floating parts, illegible labels, brand marks, captions, subtitles, diagrams, UI, camera shake, jumpy motion, cartoon rendering",
      "resolution": "720p",
      "duration": 8,
      "inputs": {
        "frameImages": [
          {
            "image": "https://assets.runware.ai/assets/inputs/d47bcc1e-c8c9-47a4-8aa5-ecae93638bde.jpg",
            "frame": "first"
          }
        ]
      }
    }
  ]'
runware run klingai:kling-video@3.0-turbo \
  positivePrompt="shot 1, 3 seconds, Continue directly from the supplied first frame in the same clean industrial training set. The technician closes the graphite-and-orange thermoelectric clamp around the transparent water pipe and snaps its latch securely into place. A slim status ring changes from amber to cold blue as the camera makes a controlled slow push-in. Precise hand movement, stable product geometry, realistic reflections and quiet mechanical clicks;
shot 2, 3 seconds, Cut to a crisp macro side view of the same clamp and transparent pipe. Frost blooms naturally from the chilled jaws while a clearly visible ice plug grows inside the pipe and stops the moving blue-tinted water. Preserve the exact clamp design, lighting, bench, and pipe orientation. Subtle refrigeration hum, delicate ice crackle, premium technical cinematography;
shot 3, 2 seconds, Cut wider to include the brass tap downstream on the right. The technician turns the tap open; one residual drop falls and then the outlet remains dry, visibly proving the frozen plug is holding. The blue status ring stays steady and frost remains localized around the clamp. Calm, credible product-explainer finish with no captions, logos, interfaces, or graphic overlays;" \
  negativePrompt="warped tools, changing product design, extra hands, missing fingers, leaking pipe, bursting pipe, excessive fog, magical effects, floating parts, illegible labels, brand marks, captions, subtitles, diagrams, UI, camera shake, jumpy motion, cartoon rendering" \
  resolution=720p \
  duration=8 \
  inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/d47bcc1e-c8c9-47a4-8aa5-ecae93638bde.jpg \
  inputs.frameImages.0.frame=first
{
  "taskType": "videoInference",
  "taskUUID": "56cb658f-7615-4d4c-9d22-27c4cd6cc053",
  "model": "klingai:kling-video@3.0-turbo",
  "positivePrompt": "shot 1, 3 seconds, Continue directly from the supplied first frame in the same clean industrial training set. The technician closes the graphite-and-orange thermoelectric clamp around the transparent water pipe and snaps its latch securely into place. A slim status ring changes from amber to cold blue as the camera makes a controlled slow push-in. Precise hand movement, stable product geometry, realistic reflections and quiet mechanical clicks;\nshot 2, 3 seconds, Cut to a crisp macro side view of the same clamp and transparent pipe. Frost blooms naturally from the chilled jaws while a clearly visible ice plug grows inside the pipe and stops the moving blue-tinted water. Preserve the exact clamp design, lighting, bench, and pipe orientation. Subtle refrigeration hum, delicate ice crackle, premium technical cinematography;\nshot 3, 2 seconds, Cut wider to include the brass tap downstream on the right. The technician turns the tap open; one residual drop falls and then the outlet remains dry, visibly proving the frozen plug is holding. The blue status ring stays steady and frost remains localized around the clamp. Calm, credible product-explainer finish with no captions, logos, interfaces, or graphic overlays;",
  "negativePrompt": "warped tools, changing product design, extra hands, missing fingers, leaking pipe, bursting pipe, excessive fog, magical effects, floating parts, illegible labels, brand marks, captions, subtitles, diagrams, UI, camera shake, jumpy motion, cartoon rendering",
  "resolution": "720p",
  "duration": 8,
  "inputs": {
    "frameImages": [
      {
        "image": "https://assets.runware.ai/assets/inputs/d47bcc1e-c8c9-47a4-8aa5-ecae93638bde.jpg",
        "frame": "first"
      }
    ]
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "56cb658f-7615-4d4c-9d22-27c4cd6cc053",
  "videoUUID": "242e17aa-ef47-4e7b-aa47-58a5464840b1",
  "videoURL": "https://vm.runware.ai/video/os/a10dlim3/ws/5/vi/242e17aa-ef47-4e7b-aa47-58a5464840b1.mp4",
  "cost": 0.896
}
Origami Courier Train Interior
Try in Playground
import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'klingai:kling-video@3.0-turbo',
  positivePrompt: 'Animate from the provided first frame: a tiny origami courier rides inside a sleek high-speed train carriage made entirely of folded paper. The courier looks up, smiles, and speaks silently with clear lip and jaw movement while steadying a paper satchel as the train glides around a bend. Camera performs a smooth slow push-in from waist-up to close-up, passing warm aisle reflections and soft window streaks. Maintain the exact folded-paper character design, crisp creases, visible paper fibers, consistent scale, stable hands and face, cinematic vertical framing, gentle motion blur, polished production quality.',
  resolution: '1080p',
  duration: 6,
  inputs: {
    frameImages: [
      {
        image: 'https://assets.runware.ai/assets/inputs/1d1be2c4-bd21-4979-afdc-9286b2c13b42.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": "klingai:kling-video@3.0-turbo",
            "positivePrompt": "Animate from the provided first frame: a tiny origami courier rides inside a sleek high-speed train carriage made entirely of folded paper. The courier looks up, smiles, and speaks silently with clear lip and jaw movement while steadying a paper satchel as the train glides around a bend. Camera performs a smooth slow push-in from waist-up to close-up, passing warm aisle reflections and soft window streaks. Maintain the exact folded-paper character design, crisp creases, visible paper fibers, consistent scale, stable hands and face, cinematic vertical framing, gentle motion blur, polished production quality.",
            "resolution": "1080p",
            "duration": 6,
            "inputs": {
                "frameImages": [
                    {
                        "image": "https://assets.runware.ai/assets/inputs/1d1be2c4-bd21-4979-afdc-9286b2c13b42.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": "1e769f6e-0ec7-4e0c-9e8e-d8477d19df2c",
      "model": "klingai:kling-video@3.0-turbo",
      "positivePrompt": "Animate from the provided first frame: a tiny origami courier rides inside a sleek high-speed train carriage made entirely of folded paper. The courier looks up, smiles, and speaks silently with clear lip and jaw movement while steadying a paper satchel as the train glides around a bend. Camera performs a smooth slow push-in from waist-up to close-up, passing warm aisle reflections and soft window streaks. Maintain the exact folded-paper character design, crisp creases, visible paper fibers, consistent scale, stable hands and face, cinematic vertical framing, gentle motion blur, polished production quality.",
      "resolution": "1080p",
      "duration": 6,
      "inputs": {
        "frameImages": [
          {
            "image": "https://assets.runware.ai/assets/inputs/1d1be2c4-bd21-4979-afdc-9286b2c13b42.jpg",
            "frame": "first"
          }
        ]
      }
    }
  ]'
runware run klingai:kling-video@3.0-turbo \
  positivePrompt="Animate from the provided first frame: a tiny origami courier rides inside a sleek high-speed train carriage made entirely of folded paper. The courier looks up, smiles, and speaks silently with clear lip and jaw movement while steadying a paper satchel as the train glides around a bend. Camera performs a smooth slow push-in from waist-up to close-up, passing warm aisle reflections and soft window streaks. Maintain the exact folded-paper character design, crisp creases, visible paper fibers, consistent scale, stable hands and face, cinematic vertical framing, gentle motion blur, polished production quality." \
  resolution=1080p \
  duration=6 \
  inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/1d1be2c4-bd21-4979-afdc-9286b2c13b42.jpg \
  inputs.frameImages.0.frame=first
{
  "taskType": "videoInference",
  "taskUUID": "1e769f6e-0ec7-4e0c-9e8e-d8477d19df2c",
  "model": "klingai:kling-video@3.0-turbo",
  "positivePrompt": "Animate from the provided first frame: a tiny origami courier rides inside a sleek high-speed train carriage made entirely of folded paper. The courier looks up, smiles, and speaks silently with clear lip and jaw movement while steadying a paper satchel as the train glides around a bend. Camera performs a smooth slow push-in from waist-up to close-up, passing warm aisle reflections and soft window streaks. Maintain the exact folded-paper character design, crisp creases, visible paper fibers, consistent scale, stable hands and face, cinematic vertical framing, gentle motion blur, polished production quality.",
  "resolution": "1080p",
  "duration": 6,
  "inputs": {
    "frameImages": [
      {
        "image": "https://assets.runware.ai/assets/inputs/1d1be2c4-bd21-4979-afdc-9286b2c13b42.jpg",
        "frame": "first"
      }
    ]
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "1e769f6e-0ec7-4e0c-9e8e-d8477d19df2c",
  "videoUUID": "fcfd45c5-5f20-489e-8b0f-974f084aeef1",
  "videoURL": "https://vm.runware.ai/video/os/a04d20/ws/5/vi/fcfd45c5-5f20-489e-8b0f-974f084aeef1.mp4",
  "cost": 0.84
}
Crystal Orchard Rain Performance
Try in Playground
import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'klingai:kling-video@3.0-turbo',
  positivePrompt: 'Cinematic 8-second video in a futuristic crystal orchard after heavy rain. Rows of transparent trees with faceted fruit refract cyan and amber light from distant maglev tracks. A singer in a tailored silver coat walks between the trees, turns toward the camera, and clearly speaks the line: "Every reflection remembers a different sky." Her mouth movement stays natural and synchronized, eyes expressive, posture confident. The camera begins with a low tracking shot through sparkling puddles, rises into a medium close-up as she speaks, then glides sideways to reveal the orchard stretching into mist. Realistic water droplets, soft reflections, shallow depth of field, elegant sci-fi fashion, smooth motion, premium film lighting, detailed facial animation.',
  width: 1920,
  height: 1080,
  duration: 8
})
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": "klingai:kling-video@3.0-turbo",
            "positivePrompt": "Cinematic 8-second video in a futuristic crystal orchard after heavy rain. Rows of transparent trees with faceted fruit refract cyan and amber light from distant maglev tracks. A singer in a tailored silver coat walks between the trees, turns toward the camera, and clearly speaks the line: \"Every reflection remembers a different sky.\" Her mouth movement stays natural and synchronized, eyes expressive, posture confident. The camera begins with a low tracking shot through sparkling puddles, rises into a medium close-up as she speaks, then glides sideways to reveal the orchard stretching into mist. Realistic water droplets, soft reflections, shallow depth of field, elegant sci-fi fashion, smooth motion, premium film lighting, detailed facial animation.",
            "width": 1920,
            "height": 1080,
            "duration": 8
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "videoInference",
      "taskUUID": "dd9dc70c-fdfe-4a5a-9419-deb06091e5cd",
      "model": "klingai:kling-video@3.0-turbo",
      "positivePrompt": "Cinematic 8-second video in a futuristic crystal orchard after heavy rain. Rows of transparent trees with faceted fruit refract cyan and amber light from distant maglev tracks. A singer in a tailored silver coat walks between the trees, turns toward the camera, and clearly speaks the line: \"Every reflection remembers a different sky.\" Her mouth movement stays natural and synchronized, eyes expressive, posture confident. The camera begins with a low tracking shot through sparkling puddles, rises into a medium close-up as she speaks, then glides sideways to reveal the orchard stretching into mist. Realistic water droplets, soft reflections, shallow depth of field, elegant sci-fi fashion, smooth motion, premium film lighting, detailed facial animation.",
      "width": 1920,
      "height": 1080,
      "duration": 8
    }
  ]'
runware run klingai:kling-video@3.0-turbo \
  positivePrompt="Cinematic 8-second video in a futuristic crystal orchard after heavy rain. Rows of transparent trees with faceted fruit refract cyan and amber light from distant maglev tracks. A singer in a tailored silver coat walks between the trees, turns toward the camera, and clearly speaks the line: \"Every reflection remembers a different sky.\" Her mouth movement stays natural and synchronized, eyes expressive, posture confident. The camera begins with a low tracking shot through sparkling puddles, rises into a medium close-up as she speaks, then glides sideways to reveal the orchard stretching into mist. Realistic water droplets, soft reflections, shallow depth of field, elegant sci-fi fashion, smooth motion, premium film lighting, detailed facial animation." \
  width=1920 \
  height=1080 \
  duration=8
{
  "taskType": "videoInference",
  "taskUUID": "dd9dc70c-fdfe-4a5a-9419-deb06091e5cd",
  "model": "klingai:kling-video@3.0-turbo",
  "positivePrompt": "Cinematic 8-second video in a futuristic crystal orchard after heavy rain. Rows of transparent trees with faceted fruit refract cyan and amber light from distant maglev tracks. A singer in a tailored silver coat walks between the trees, turns toward the camera, and clearly speaks the line: \"Every reflection remembers a different sky.\" Her mouth movement stays natural and synchronized, eyes expressive, posture confident. The camera begins with a low tracking shot through sparkling puddles, rises into a medium close-up as she speaks, then glides sideways to reveal the orchard stretching into mist. Realistic water droplets, soft reflections, shallow depth of field, elegant sci-fi fashion, smooth motion, premium film lighting, detailed facial animation.",
  "width": 1920,
  "height": 1080,
  "duration": 8
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "dd9dc70c-fdfe-4a5a-9419-deb06091e5cd",
  "videoUUID": "2d73829e-7073-493b-8c58-0ebd9cb773ff",
  "videoURL": "https://vm.runware.ai/video/os/a07dlim3/ws/5/vi/2d73829e-7073-493b-8c58-0ebd9cb773ff.mp4",
  "cost": 1.12
}

multi-shot

Waterworks Cumbia Music Video$1.34~1m 47s
Try in Playground
import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'klingai:kling-video@3.0-turbo',
  positivePrompt: 'shot 1, 4, A female cumbia vocalist in a reflective silver raincoat strides toward camera along a narrow catwalk above circular water-treatment tanks at blue hour, singing directly to lens. Sodium-orange work lights punctuate deep chlorine cyan, steam drifts across frame, confident rhythmic shoulder movement, smooth backward tracking shot, polished music-video cinematography, centered square composition; shot 2, 4, The same vocalist enters the pump hall as six uniformed night-shift operators strike pipes and steel railings in synchronized percussion choreography around her. She spins between them while the camera makes a fast controlled half-orbit, orange gloves and safety lamps flashing against teal concrete, energetic industrial cumbia performance, crisp realistic motion; shot 3, 4, Overhead crane shot rises above the outdoor clarifier where the vocalist and crew form a rotating spiral on concentric walkways, stepping in unison as reflected lights ripple across black water. The spiral opens outward on the final beat, revealing the geometric waterworks at night, cyan pools and amber lamps, triumphant finale, cinematic square framing;',
  width: 960,
  height: 960,
  duration: 12
})
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": "klingai:kling-video@3.0-turbo",
            "positivePrompt": "shot 1, 4, A female cumbia vocalist in a reflective silver raincoat strides toward camera along a narrow catwalk above circular water-treatment tanks at blue hour, singing directly to lens. Sodium-orange work lights punctuate deep chlorine cyan, steam drifts across frame, confident rhythmic shoulder movement, smooth backward tracking shot, polished music-video cinematography, centered square composition; shot 2, 4, The same vocalist enters the pump hall as six uniformed night-shift operators strike pipes and steel railings in synchronized percussion choreography around her. She spins between them while the camera makes a fast controlled half-orbit, orange gloves and safety lamps flashing against teal concrete, energetic industrial cumbia performance, crisp realistic motion; shot 3, 4, Overhead crane shot rises above the outdoor clarifier where the vocalist and crew form a rotating spiral on concentric walkways, stepping in unison as reflected lights ripple across black water. The spiral opens outward on the final beat, revealing the geometric waterworks at night, cyan pools and amber lamps, triumphant finale, cinematic square framing;",
            "width": 960,
            "height": 960,
            "duration": 12
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "videoInference",
      "taskUUID": "08d7f1aa-e401-4d27-b376-56a90e102ed7",
      "model": "klingai:kling-video@3.0-turbo",
      "positivePrompt": "shot 1, 4, A female cumbia vocalist in a reflective silver raincoat strides toward camera along a narrow catwalk above circular water-treatment tanks at blue hour, singing directly to lens. Sodium-orange work lights punctuate deep chlorine cyan, steam drifts across frame, confident rhythmic shoulder movement, smooth backward tracking shot, polished music-video cinematography, centered square composition; shot 2, 4, The same vocalist enters the pump hall as six uniformed night-shift operators strike pipes and steel railings in synchronized percussion choreography around her. She spins between them while the camera makes a fast controlled half-orbit, orange gloves and safety lamps flashing against teal concrete, energetic industrial cumbia performance, crisp realistic motion; shot 3, 4, Overhead crane shot rises above the outdoor clarifier where the vocalist and crew form a rotating spiral on concentric walkways, stepping in unison as reflected lights ripple across black water. The spiral opens outward on the final beat, revealing the geometric waterworks at night, cyan pools and amber lamps, triumphant finale, cinematic square framing;",
      "width": 960,
      "height": 960,
      "duration": 12
    }
  ]'
runware run klingai:kling-video@3.0-turbo \
  positivePrompt="shot 1, 4, A female cumbia vocalist in a reflective silver raincoat strides toward camera along a narrow catwalk above circular water-treatment tanks at blue hour, singing directly to lens. Sodium-orange work lights punctuate deep chlorine cyan, steam drifts across frame, confident rhythmic shoulder movement, smooth backward tracking shot, polished music-video cinematography, centered square composition; shot 2, 4, The same vocalist enters the pump hall as six uniformed night-shift operators strike pipes and steel railings in synchronized percussion choreography around her. She spins between them while the camera makes a fast controlled half-orbit, orange gloves and safety lamps flashing against teal concrete, energetic industrial cumbia performance, crisp realistic motion; shot 3, 4, Overhead crane shot rises above the outdoor clarifier where the vocalist and crew form a rotating spiral on concentric walkways, stepping in unison as reflected lights ripple across black water. The spiral opens outward on the final beat, revealing the geometric waterworks at night, cyan pools and amber lamps, triumphant finale, cinematic square framing;" \
  width=960 \
  height=960 \
  duration=12
{
  "taskType": "videoInference",
  "taskUUID": "08d7f1aa-e401-4d27-b376-56a90e102ed7",
  "model": "klingai:kling-video@3.0-turbo",
  "positivePrompt": "shot 1, 4, A female cumbia vocalist in a reflective silver raincoat strides toward camera along a narrow catwalk above circular water-treatment tanks at blue hour, singing directly to lens. Sodium-orange work lights punctuate deep chlorine cyan, steam drifts across frame, confident rhythmic shoulder movement, smooth backward tracking shot, polished music-video cinematography, centered square composition; shot 2, 4, The same vocalist enters the pump hall as six uniformed night-shift operators strike pipes and steel railings in synchronized percussion choreography around her. She spins between them while the camera makes a fast controlled half-orbit, orange gloves and safety lamps flashing against teal concrete, energetic industrial cumbia performance, crisp realistic motion; shot 3, 4, Overhead crane shot rises above the outdoor clarifier where the vocalist and crew form a rotating spiral on concentric walkways, stepping in unison as reflected lights ripple across black water. The spiral opens outward on the final beat, revealing the geometric waterworks at night, cyan pools and amber lamps, triumphant finale, cinematic square framing;",
  "width": 960,
  "height": 960,
  "duration": 12
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "08d7f1aa-e401-4d27-b376-56a90e102ed7",
  "videoUUID": "b03e1257-c6eb-423d-821a-42d2c50a3b10",
  "videoURL": "https://vm.runware.ai/video/os/a07dlim3/ws/5/vi/b03e1257-c6eb-423d-821a-42d2c50a3b10.mp4",
  "cost": 1.344
}
Ceramic Whale Polar Procession
Try in Playground
import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'klingai:kling-video@3.0-turbo',
  positivePrompt: 'Cinematic wide shot in a windless polar basin at sunrise: a colossal white ceramic whale-shaped airship glides silently just above rippled snow, its glossy cracked glaze catching peach and blue light. Tiny bundled explorers on skis travel beneath it in a perfectly spaced line, pulling chrome sleds that leave crisp tracks. The camera begins low beside the ski tracks, then rises smoothly into a slow forward crane move, revealing the full scale of the whale vessel, delicate fins tilting, vapor drifting from small side vents, snow dust swirling gently under its shadow. Elegant surreal realism, stable motion, detailed textures, soft natural light, graceful pacing, high-end cinematic composition.',
  width: 1280,
  height: 720,
  duration: 8
})
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": "klingai:kling-video@3.0-turbo",
            "positivePrompt": "Cinematic wide shot in a windless polar basin at sunrise: a colossal white ceramic whale-shaped airship glides silently just above rippled snow, its glossy cracked glaze catching peach and blue light. Tiny bundled explorers on skis travel beneath it in a perfectly spaced line, pulling chrome sleds that leave crisp tracks. The camera begins low beside the ski tracks, then rises smoothly into a slow forward crane move, revealing the full scale of the whale vessel, delicate fins tilting, vapor drifting from small side vents, snow dust swirling gently under its shadow. Elegant surreal realism, stable motion, detailed textures, soft natural light, graceful pacing, high-end cinematic composition.",
            "width": 1280,
            "height": 720,
            "duration": 8
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "videoInference",
      "taskUUID": "9a1271c8-fa43-49df-864e-b4bcd8c792a8",
      "model": "klingai:kling-video@3.0-turbo",
      "positivePrompt": "Cinematic wide shot in a windless polar basin at sunrise: a colossal white ceramic whale-shaped airship glides silently just above rippled snow, its glossy cracked glaze catching peach and blue light. Tiny bundled explorers on skis travel beneath it in a perfectly spaced line, pulling chrome sleds that leave crisp tracks. The camera begins low beside the ski tracks, then rises smoothly into a slow forward crane move, revealing the full scale of the whale vessel, delicate fins tilting, vapor drifting from small side vents, snow dust swirling gently under its shadow. Elegant surreal realism, stable motion, detailed textures, soft natural light, graceful pacing, high-end cinematic composition.",
      "width": 1280,
      "height": 720,
      "duration": 8
    }
  ]'
runware run klingai:kling-video@3.0-turbo \
  positivePrompt="Cinematic wide shot in a windless polar basin at sunrise: a colossal white ceramic whale-shaped airship glides silently just above rippled snow, its glossy cracked glaze catching peach and blue light. Tiny bundled explorers on skis travel beneath it in a perfectly spaced line, pulling chrome sleds that leave crisp tracks. The camera begins low beside the ski tracks, then rises smoothly into a slow forward crane move, revealing the full scale of the whale vessel, delicate fins tilting, vapor drifting from small side vents, snow dust swirling gently under its shadow. Elegant surreal realism, stable motion, detailed textures, soft natural light, graceful pacing, high-end cinematic composition." \
  width=1280 \
  height=720 \
  duration=8
{
  "taskType": "videoInference",
  "taskUUID": "9a1271c8-fa43-49df-864e-b4bcd8c792a8",
  "model": "klingai:kling-video@3.0-turbo",
  "positivePrompt": "Cinematic wide shot in a windless polar basin at sunrise: a colossal white ceramic whale-shaped airship glides silently just above rippled snow, its glossy cracked glaze catching peach and blue light. Tiny bundled explorers on skis travel beneath it in a perfectly spaced line, pulling chrome sleds that leave crisp tracks. The camera begins low beside the ski tracks, then rises smoothly into a slow forward crane move, revealing the full scale of the whale vessel, delicate fins tilting, vapor drifting from small side vents, snow dust swirling gently under its shadow. Elegant surreal realism, stable motion, detailed textures, soft natural light, graceful pacing, high-end cinematic composition.",
  "width": 1280,
  "height": 720,
  "duration": 8
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "9a1271c8-fa43-49df-864e-b4bcd8c792a8",
  "videoUUID": "ab5f355d-d2a9-4d0d-8c4d-c7c9ac57c20c",
  "videoURL": "https://vm.runware.ai/video/os/a07dlim3/ws/5/vi/ab5f355d-d2a9-4d0d-8c4d-c7c9ac57c20c.mp4",
  "cost": 0.896
}
Velvet Mantis Weather Desk
Try in Playground
import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'klingai:kling-video@3.0-turbo',
  positivePrompt: 'Animate the provided first frame into a polished vertical video. The emerald mantis presenter faces the camera with confident charm, mandibles moving in natural speech-like rhythm while antennae react subtly. It points one forelimb toward floating weather-map panels that update with swirling golden pollen trails over a tiny city skyline. Add a slow camera push-in, soft desk reflections, gentle rooftop breeze through the blazer fabric, consistent character proportions, premium commercial cinematography, smooth motion, sharp focus, warm sunset color grade.',
  negativePrompt: 'low quality, warped anatomy, extra limbs, flickering face, jittery camera, smeared details, unreadable symbols, text overlays, logo, watermark, harsh blur, abrupt cuts',
  resolution: '1080p',
  duration: 8,
  inputs: {
    frameImages: [
      {
        image: 'https://assets.runware.ai/assets/inputs/a4da83b0-f570-42b1-95ef-5bdd4ec5bbb3.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": "klingai:kling-video@3.0-turbo",
            "positivePrompt": "Animate the provided first frame into a polished vertical video. The emerald mantis presenter faces the camera with confident charm, mandibles moving in natural speech-like rhythm while antennae react subtly. It points one forelimb toward floating weather-map panels that update with swirling golden pollen trails over a tiny city skyline. Add a slow camera push-in, soft desk reflections, gentle rooftop breeze through the blazer fabric, consistent character proportions, premium commercial cinematography, smooth motion, sharp focus, warm sunset color grade.",
            "negativePrompt": "low quality, warped anatomy, extra limbs, flickering face, jittery camera, smeared details, unreadable symbols, text overlays, logo, watermark, harsh blur, abrupt cuts",
            "resolution": "1080p",
            "duration": 8,
            "inputs": {
                "frameImages": [
                    {
                        "image": "https://assets.runware.ai/assets/inputs/a4da83b0-f570-42b1-95ef-5bdd4ec5bbb3.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": "e959b986-cdf8-486f-b4ae-71d7ff771f28",
      "model": "klingai:kling-video@3.0-turbo",
      "positivePrompt": "Animate the provided first frame into a polished vertical video. The emerald mantis presenter faces the camera with confident charm, mandibles moving in natural speech-like rhythm while antennae react subtly. It points one forelimb toward floating weather-map panels that update with swirling golden pollen trails over a tiny city skyline. Add a slow camera push-in, soft desk reflections, gentle rooftop breeze through the blazer fabric, consistent character proportions, premium commercial cinematography, smooth motion, sharp focus, warm sunset color grade.",
      "negativePrompt": "low quality, warped anatomy, extra limbs, flickering face, jittery camera, smeared details, unreadable symbols, text overlays, logo, watermark, harsh blur, abrupt cuts",
      "resolution": "1080p",
      "duration": 8,
      "inputs": {
        "frameImages": [
          {
            "image": "https://assets.runware.ai/assets/inputs/a4da83b0-f570-42b1-95ef-5bdd4ec5bbb3.jpg",
            "frame": "first"
          }
        ]
      }
    }
  ]'
runware run klingai:kling-video@3.0-turbo \
  positivePrompt="Animate the provided first frame into a polished vertical video. The emerald mantis presenter faces the camera with confident charm, mandibles moving in natural speech-like rhythm while antennae react subtly. It points one forelimb toward floating weather-map panels that update with swirling golden pollen trails over a tiny city skyline. Add a slow camera push-in, soft desk reflections, gentle rooftop breeze through the blazer fabric, consistent character proportions, premium commercial cinematography, smooth motion, sharp focus, warm sunset color grade." \
  negativePrompt="low quality, warped anatomy, extra limbs, flickering face, jittery camera, smeared details, unreadable symbols, text overlays, logo, watermark, harsh blur, abrupt cuts" \
  resolution=1080p \
  duration=8 \
  inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/a4da83b0-f570-42b1-95ef-5bdd4ec5bbb3.jpg \
  inputs.frameImages.0.frame=first
{
  "taskType": "videoInference",
  "taskUUID": "e959b986-cdf8-486f-b4ae-71d7ff771f28",
  "model": "klingai:kling-video@3.0-turbo",
  "positivePrompt": "Animate the provided first frame into a polished vertical video. The emerald mantis presenter faces the camera with confident charm, mandibles moving in natural speech-like rhythm while antennae react subtly. It points one forelimb toward floating weather-map panels that update with swirling golden pollen trails over a tiny city skyline. Add a slow camera push-in, soft desk reflections, gentle rooftop breeze through the blazer fabric, consistent character proportions, premium commercial cinematography, smooth motion, sharp focus, warm sunset color grade.",
  "negativePrompt": "low quality, warped anatomy, extra limbs, flickering face, jittery camera, smeared details, unreadable symbols, text overlays, logo, watermark, harsh blur, abrupt cuts",
  "resolution": "1080p",
  "duration": 8,
  "inputs": {
    "frameImages": [
      {
        "image": "https://assets.runware.ai/assets/inputs/a4da83b0-f570-42b1-95ef-5bdd4ec5bbb3.jpg",
        "frame": "first"
      }
    ]
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "e959b986-cdf8-486f-b4ae-71d7ff771f28",
  "videoUUID": "37b2deb2-095b-47c6-b4ef-ec33cb995697",
  "videoURL": "https://vm.runware.ai/video/os/a04d20/ws/5/vi/37b2deb2-095b-47c6-b4ef-ec33cb995697.mp4",
  "cost": 1.12
}