Video generation model

kling-v3-omni

Kling v3 Omni

Kling v3 Omni is listed on the current BatchIn Model API surface.

Model detailAvailableMoE Transformer

Params

N/A

Context

N/A

Max Output

N/A

License

Vendor Commercial License

API Surface

/v1/videos

Access

Available

Why pick it

  • Available in the current product catalog.
  • Pricing is shown when the model is available for your account.

Pricing

TierPublicCachedNote
Realtime$0.084 / secondN/ACurrent published price
Batch$0.084 / secondN/APublished batch rates appear here when available
Current BatchIn list price.

Quick start

This model is enabled for self-serve access in the multimodal workspace, with task status, cost, and receipts.

Python
import requests

resp = requests.post(
    "https://api.batchin.tech/v1/videos",
    headers={"Authorization": "Bearer BATCHIN_API_KEY"},
    json={
        "model": "kling-v3-omni",
        "prompt": "A tracking shot through a futuristic city",
        "duration_seconds": 5
    },
    timeout=60,
)

print(resp.json())
JavaScript
const resp = await fetch("https://api.batchin.tech/v1/videos", {
  method: "POST",
  headers: {
    Authorization: "Bearer " + process.env.BATCHIN_API_KEY,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    model: "kling-v3-omni",
    prompt: "A tracking shot through a futuristic city",
    duration_seconds: 5,
  }),
});

console.log(await resp.json());
cURL
curl https://api.batchin.tech/v1/videos \  -H "Authorization: Bearer ***" \  -H "Content-Type: application/json" \  -d '{
    "model": "kling-v3-omni",
    "prompt": "A tracking shot through a futuristic city",
    "duration_seconds": 5
  }'

Specs

Architecture

MoE Transformer

Model type

Video generation model

Context window

N/A

Max output

N/A

Best for

kling
available

Related models

Back to model center
Kling v3 Omni | BatchIn