KlingReleased on Jan 1, 2025

Kling v2.1 Master: Benchmarks, Pricing & Context Window

Kling v2.1 Master is a video generation model from Kling, released in January 2025.

High-quality text-to-video and image-to-video generation model via Replicate. Supports 5 second videos with multiple aspect ratios and negative prompts.

Input
TextImage
Output
Video

Kling v2.1 Master examples

Recent arena outputs from Kling v2.1 Master, picked from the highest-ranked matchups.

Kling v2.1 Master API

POST/v1/generations

Image-to-video start frame.

Run a request to see the response

Use it in your code

OpenAI-compatible endpoint through the LLM Stats gateway.

import requests

# Create the generation. wait="auto" long-polls (up to 60s) so most short
# jobs return as "completed" in a single round-trip.
res = requests.post(
    "https://gateway.llm-stats.com/v1/generations",
    headers={"Authorization": "Bearer YOUR_API_KEY"},
    json={
        "model": "kling-v2.1-master",
        "input": {"prompt": "A timelapse of clouds moving across the sky"},
        "wait": "auto",
    },
)
job = res.json()

# If it didn't finish inside the wait window, poll the same resource.
while job["status"] in ("queued", "running"):
    res = requests.get(
        f"https://gateway.llm-stats.com/v1/generations/{job['id']}",
        params={"wait": 60},
        headers={"Authorization": "Bearer YOUR_API_KEY"},
    )
    job = res.json()

if job["status"] == "completed":
    print("video:", job["output"]["media"][0]["url"])
else:
    print("Failed:", job["error"]["message"])

Need an API key? Create one above in the playground, or read the API documentation.

Kling v2.1 Master pricing

Providers

Kling v2.1 Master starts at $0.0700 per second of 1080p video via Replicate.

Provider720p $/s1080p $/shigh $/sLatency sInputOutput
Replicate logoReplicate
$0.0700$0.0700$0.0700

Kling v2.1 Master benchmarks

Rankings

Performance by category and language

Where Kling v2.1 Master is strongest across prompt themes and languages. Conservative TrueSkill score (μ − 3σ), only axes with 3+ votes.

Quality Tracker

Similar Models

How Kling v2.1 Master compares to its closest neighbors on each video arena it competes in.

Notice missing or incorrect data?

Kling v2.1 Master license

Kling v2.1 Master is released under the Proprietary license, which restricts commercial use.

License
Proprietary
Non-commercial

Proprietary license - usage restrictions apply

Models like Kling v2.1 Master

Other video models ranked closest to Kling v2.1 Master.

FAQ

Common questions about Kling v2.1 Master.

Who created Kling v2.1 Master?

Kling v2.1 Master was created by Kling.

What is the license for Kling v2.1 Master?

Kling v2.1 Master is released under the Proprietary license.

Is Kling v2.1 Master multimodal?

Yes, Kling v2.1 Master is multimodal and can accept both text and images as input.

Where can I use Kling v2.1 Master?

Kling v2.1 Master is available through 1 provider including Replicate.