Kling VIDEO 3.0 Turbo

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.

API Reference
INTEGRATE
Complete technical specification for integration
RequestResponse
Examples4
CODE
Ready-to-use code snippets for common workflows
Guides1
LEARN
Step-by-step tutorials for advanced use cases
text-to-video
Luxury Apiary Outerwear Showcase Reel$0.70~2m 16simport { 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 25simport { 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 8simport { 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
}multi-shot
Waterworks Cumbia Music Video$1.34~1m 47simport { 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
}