Models/kling-v3-omni-image-generation
Model Code
kling/kling-v3-omni-image-generation
Try now

Model overview

Image generation

Kling Image 3.0 Omni unlocks cinematic narrative image generation with serial image groups and direct 2K/4K output. It analyzes visual and audio intent in prompts, follows creative instructions precisely, supports free-form multi-reference images, and is suitable for storyboards, concept art, and scene design.

Company: Kling AIProvider: Alibaba Cloud

Model capabilities

Input modalityT
Output modalityT
Model experience
Function calling-
Structured output-
Web search-
Prefix completion-
Context cache-
Batch inference-
Fine-tuning-

Model pricing

Image generation (1K)$0.02985/image
Image generation (2K)$0.02985/image
Image generation (4K)$0.0597/s

Rate limits and context

Maximum input length-
Context length-
Maximum output length-
RPM300

API reference

EndpointPOST /v1/images/generations
SDKOpenAI-compatible

API code examples

Get API Key
import os
import requests

response = requests.post(
    "https://api.wlrouter.com/v1/images/generations",
    headers={
        "Authorization": f"Bearer {os.environ['WLROUTER_API_KEY']}",
        "Content-Type": "application/json",
    },
    json={
  "model": "kling/kling-v3-omni-image-generation",
  "prompt": "A clean product photo of a ceramic coffee cup on a white desk.",
  "n": 1,
  "size": "1024*1024"
}
)
response.raise_for_status()
print(response.json())