Kling Omni Video O3 Image-To-Video
kwaivgi/kling-video-o3/image-to-video
Kling Omni Video O3 Image-to-Video transforms static images into dynamic cinematic videos using MVL (Multi-modal Visual Language) technology. Maintains subject consistency while adding natural motion, physics simulation, and seamless scene dynamics. Supports audio generation. Ready-to-use REST API, best performance, no coldstarts, affordable pricing.
Examples
Parameters
| Name | Type | Default | Constraints | Description |
|---|---|---|---|---|
| image *Image | image_upload | — | 0–1 items | The first frame image URL. |
| last_imageEnd Image | image_upload | — | 0–1 items | The last frame image URL. |
| promptPrompt | textarea | — | ≤ 5000 chars | The positive prompt for the generation. |
| resolutionGeneration Mode | select | 720P | 720P | 1080P | 4K | |
| durationDuration | select | 5 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | … | The duration of the generated media in seconds (3-15). |
| soundSound | boolean | false | — | Whether to generate audio for the video. |
| multi_shotMulti Shot | boolean | — | — | Whether to generate multi-shot video When true: the prompt parameter is invalid. When false: the shot_type and multi_prompt parameters are invalid |
| shot_typeShot Type | select | intelligence | customize | intelligence | Shot type for the generation. |
| multi_promptMulti Prompt | array<object> | — | — | List of multi-prompt elements for the generation. |
| ↳durationDuration | number | 5 | — | The duration of this shot in seconds. |
| ↳promptPrompt | text | — | — | The prompt for this shot. |
Output fields
| Field | Type | Description |
|---|---|---|
| videos | array<string> | Generated video URLs |
API
Call this model through one unified REST API. Get a key on the API Keys page.
cURL
# 1) Submit — returns { "task_uuid": "..." }
curl -X POST "https://www.namifusion.com/api/v1/marketplace/run/kwaivgi/kling-video-o3/image-to-video" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"input": {
"image": [
"https://assets-public.namifusion.com/uploads/images/2026-04-14/5895345cd939.png"
],
"last_image": [
"https://assets-public.namifusion.com/uploads/images/2026-04-14/c98e7d7d7c2e.png"
],
"prompt": "Generate a dynamic video of a tranquil sunset scene transitioning into a starry night over the mountains, with realistic lighting and smooth motions.",
"resolution": "720P",
"duration": 5,
"sound": false,
"shot_type": "intelligence"
}
}'
# 2) Poll until status is "completed", then read the output URLs
curl "https://www.namifusion.com/api/v1/marketplace/run/tasks/TASK_UUID" \
-H "Authorization: Bearer YOUR_API_KEY"Python
import time, requests
API_KEY = "YOUR_API_KEY"
HEADERS = {"Authorization": f"Bearer {API_KEY}"}
# 1) Submit
resp = requests.post(
"https://www.namifusion.com/api/v1/marketplace/run/kwaivgi/kling-video-o3/image-to-video",
headers=HEADERS,
json={
"input": {
"image": [
"https://assets-public.namifusion.com/uploads/images/2026-04-14/5895345cd939.png"
],
"last_image": [
"https://assets-public.namifusion.com/uploads/images/2026-04-14/c98e7d7d7c2e.png"
],
"prompt": "Generate a dynamic video of a tranquil sunset scene transitioning into a starry night over the mountains, with realistic lighting and smooth motions.",
"resolution": "720P",
"duration": 5,
"sound": False,
"shot_type": "intelligence"
}
},
)
resp.raise_for_status() # 401/402/429/5xx stop here instead of polling a bad task
task = resp.json()
# 2) Poll until a terminal state (completed / failed / cancelled).
# This model is allowed up to 300s server-side.
deadline = time.time() + 360
while task.get("status") not in ("completed", "failed", "cancelled"):
if time.time() > deadline:
raise TimeoutError(f"still {task.get('status')} — keep the task_uuid and poll later")
time.sleep(3)
poll = requests.get(f"https://www.namifusion.com/api/v1/marketplace/run/tasks/{task['task_uuid']}", headers=HEADERS)
poll.raise_for_status()
task = poll.json()
print(task["status"], task.get("output"))JavaScript
const API_KEY = "YOUR_API_KEY";
const HEADERS = { Authorization: `Bearer ${API_KEY}` };
// 1) Submit
const resp = await fetch("https://www.namifusion.com/api/v1/marketplace/run/kwaivgi/kling-video-o3/image-to-video", {
method: "POST",
headers: { ...HEADERS, "Content-Type": "application/json" },
body: JSON.stringify({
"input": {
"image": [
"https://assets-public.namifusion.com/uploads/images/2026-04-14/5895345cd939.png"
],
"last_image": [
"https://assets-public.namifusion.com/uploads/images/2026-04-14/c98e7d7d7c2e.png"
],
"prompt": "Generate a dynamic video of a tranquil sunset scene transitioning into a starry night over the mountains, with realistic lighting and smooth motions.",
"resolution": "720P",
"duration": 5,
"sound": false,
"shot_type": "intelligence"
}
}),
});
if (!resp.ok) throw new Error(`submit failed: ${resp.status} ${await resp.text()}`);
let task = await resp.json();
// 2) Poll until a terminal state (completed / failed / cancelled).
// This model is allowed up to 300s server-side.
const deadline = Date.now() + 360 * 1000;
while (!["completed", "failed", "cancelled"].includes(task.status)) {
if (Date.now() > deadline) throw new Error(`still ${task.status} — keep the task_uuid and poll later`);
await new Promise((r) => setTimeout(r, 3000));
const poll = await fetch(`https://www.namifusion.com/api/v1/marketplace/run/tasks/${task.task_uuid}`, { headers: HEADERS });
if (!poll.ok) throw new Error(`poll failed: ${poll.status}`);
task = await poll.json();
}
console.log(task.status, task.output);Documentation
Kling Omni Video O3 Image-To-Video
Transform static images into cinematic videos with natural motion and physics simulation.
Kling Omni Video O3 is a cutting-edge image-to-video model powered by MVL (Multi-modal Visual Language) technology. It generates dynamic, cinematic videos from static images, ensuring subject consistency while adding natural motion, physics-based dynamics, and seamless transitions. With optional audio generation and flexible durations, this model offers high-quality results at an affordable price point.
🚀 Key Features
- MVL Technology: Leverages Multi-modal Visual Language for realistic motion and scene dynamics.
- Subject Consistency: Ensures that the generated video maintains the integrity of the input image.
- Flexible Durations: Generate videos ranging from 3 to 15 seconds to suit your needs.
- Audio Support: Optionally generate synchronized sound effects for a more immersive experience.
- Start-to-End Frame Guidance: Use an optional end frame for controlled transitions between two states.
- Prompt Enhancer: Automatically refines motion descriptions for optimal results.
🛠️ Technical Specifications
| Parameter | Description | Options/Defaults |
|---|---|---|
| Model Architecture | MVL (Multi-modal Visual Language) | - |
| Input Format | Image URL, Prompt, Optional End Image | - |
| Output Format | Video (with optional audio) | - |
| Duration | Length of the generated video in seconds | 3–15 seconds (default: 5) |
| Resolution | Native 720P 1080P 4K | - |
| Sound | Option to generate synchronized audio | Disabled by default |
| Latency | Low latency, no cold starts | - |
Sample Prompts
- Prompt: "A serene forest scene with sunlight filtering through the trees, gentle camera pan."
- Prompt: "A futuristic cityscape at night with neon lights and flying vehicles."
💰 Pricing
| Type | 720P | 1080P | 4K |
|---|---|---|---|
| Without Sound | 0.0840 | 0.1120 | 0.4200 |
| With Sound | 0.1120 | 0.1400 | 0.4200 |
Billing Rules:
- Base Rate: Depends on resolution.
- Sound Surcharge: Approximately +33.3% premium for audio.
- Duration: 3–15 seconds.
💡 Best Use Cases
- Content Creation: Animate product shots, portraits, or concept art into engaging video clips.
- Social Media: Produce short-form animated content at scale without breaking the budget.
- Scene Transitions: Use start and end frames for smooth cinematic transitions.
- E-commerce: Bring product images to life with motion and environmental audio.
🔗 Related Models
- Kling Video O3 Pro Image-to-Video: Maximum visual quality with O3 Pro tier.
- Kling Video O3 Std Text-to-Video: Standard tier text-to-video generation.
- Kling Video O3 Pro Video Edit: Edit existing videos with natural-language instructions.
- Kling Video O3 Pro Reference-to-Video: Create videos guided by reference images for consistent character and style.
Related models
xAI Grok Imagine Video v1.5 Image to Video
Animate one input image with a text prompt into a 1-15 second video at 480p or 720p.
Vidu Q3 Image To Video
Vidu Q3 Image-to-Video turns text prompts into high-quality videos with exceptional visual fidelity and diverse motion. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Nami Wan 2.7 I2V Spicy Prime
Create a 2–15 second video from a reference image and prompt, with 720p/1080p output and optional audio guidance.
MiniMax H3 Image to Video
MiniMax H3 Image to Video animates a first-frame image into a coherent 2K video, with natural-language motion instructions and optional last-frame control for consistent motion, scene continuity, and cinematic video generation. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Kling Omni Video O1 Image-to-Video
Kling Omni Video O1 Image-to-Video transforms static images into dynamic cinematic videos using MVL (Multi-modal Visual Language) technology. Maintains subject consistency while adding natural motion, physics simulation, and seamless scene dynamics. Ready-to-use REST API, best performance, no coldstarts, affordable pricing.
Kling 3.0 Standard
Kling 3.0 Standard delivers high-quality image-to-video generation with smooth motion, cinematic visuals, accurate prompt adherence, and native audio for ready-to-share clips. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing.
Kling V2.6 Image to Video API
Kling 2.6 delivers top-tier image-to-video generation with smooth motion, cinematic visuals, accurate prompt adherence, and native audio for ready-to-share clips. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing.
Gemini Omni Flash Image to Video API
Gemini Omni Flash Image to Video animates input images into short AI videos with synchronized audio, adding motion and sound while following the source image. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.