Giảm 50% mô hình Vidu Q3 & Q3 Pro · Chỉ trên WaveSpeedAI | 20/5 – 2/6

Kling V2.1 I2V Master

kwaivgi /

Kling 2.1 Master is a premium image-to-video endpoint delivering fluid motion, cinematic visuals, and precise prompt-driven control. Ready-to-use REST API, best performance, no coldstarts, affordable pricing.

image-to-video
Input

Kéo & thả hoặc nhấp để tải lên

preview

Idle

$1.3per run

Next:

ExamplesView all

A mysterious woman reading a spellbook in a dark forest, camera circles her, magical lights floating, trees slowly twisting, glowing runes appear

A ballerina dancing in an abandoned theater, spotlight follows her movements, dramatic angles, particles of dust in the air, emotional climax

Time-lapse of a bustling Tokyo street, fast-moving crowds, night turning into day, camera transitions to aerial view, dynamic rhythm

A steampunk train departing the station, close-up of gears turning, steam rising, transition to wide landscape shot with mechanical city

A sorcerer unleashing lightning into the sky, storm clouds swirl, cinematic lighting flashes, camera flies around the scene, slow motion impact

A dragon flying over a burning village, camera switches between ground panic and dragon POV, fire and wind effects, epic soundtrack feel

Two friends riding bicycles through the countryside, clouds moving overhead, smiling faces, grass swaying

A teenage boy sits by the window in the summer rain, headphones on, eyes closed, head bobbing to the music, raindrops streaming down the window glass

A lonely girl sitting on a swing at dusk, orange and pink sky behind her, gentle breeze moving the swing, camera stays at eye level with soft focus on her expression

A clay animation boy flying across a surreal rainbow sky on a paper airplane. The camera tracks from below as he glides over soft, fluffy clouds. The vibrant colors shift with the lighting, and the boy turns his head joyfully, waving to the viewer as stars twinkle around him.

A vibrant animated sequence featuring a stylized toy-like girl character with oversized sunglasses and a neon sports outfit. She confidently walks through a pastel-colored street filled with candy-shaped buildings. The camera follows her from behind, then swings around to reveal her smiling face under the flickering neon lights.

A cinematic slow zoom-in on a young Asian woman in a white shirt standing on the rooftop edge, her hair fluttering in the soft sunset breeze. The urban skyline stretches behind her, bathed in golden hour light. The camera gently shifts from her back to a side profile, capturing her calm expression as she overlooks the city.

Related Models

README

Kling v2.1 I2V Master — kwaivgi/kling-v2.1-i2v-master

Kling v2.1 I2V Master generates short, high-motion video clips from a single reference image plus a motion-focused prompt. Upload an image, describe what moves (subject, camera, environment), and the model animates the scene while keeping the source frame as the visual anchor. Built for stable production use with a ready-to-use REST API, no cold starts, and predictable pricing.

What it’s best at

  • Image-to-video generation with strong visual anchoring to the input image
  • Cinematic motion: camera moves, parallax, atmospheric effects, subtle facial/body motion
  • Prompt-controlled animation with optional negative_prompt to suppress artifacts
  • Fast iteration for 5-second clips (and longer durations if enabled)

Pricing

Equivalent unit price: $0.26 per second

Examples

DurationPrice
5s$1.30
10s$2.60
15s$3.90
20s$5.20

Inputs

  • image (required): the reference image used as the first-frame anchor
  • prompt (required): describe motion and camera behavior
  • negative_prompt (optional): describe what to avoid (blur, distortions, artifacts)

Parameters

  • prompt: the motion direction for the clip
  • negative_prompt: optional “avoid list” (quality issues, unwanted elements)
  • image: the input image (upload or URL)
  • guidance_scale: how strongly the motion follows the prompt (lower = more natural drift, higher = stricter prompt following)
  • duration: video length in seconds (commonly in 5-second steps)

Prompting guide (I2V)

Write prompts like a director’s brief, prioritizing motion over static description:

  • Subject motion: head turn, breathing, hair flutter, hand movement, walking, reading, etc.
  • Environment motion: wind in trees, dust, rain, fog, floating particles, light beams
  • Camera motion: slow push-in, orbit, handheld micro-shake, tilt up, dolly left, rack focus
  • Continuity constraints: keep identity, outfit, and scene layout consistent with the input image

Good pattern: A short description of the scene, then explicit motion cues, then camera movement, then mood/lighting continuity.

Example prompts

  • A mysterious woman reading a spellbook in a dark forest. Camera slowly circles her, faint magical lights float around, glowing runes appear, trees subtly twist in the background, cinematic mist and particles, moody low-key lighting, smooth motion, 5 seconds.
  • A street portrait at golden hour. Subtle breeze moves hair and clothes, soft lens flare, gentle handheld camera sway, shallow depth of field, natural facial micro-expressions, 5 seconds.
  • A product shot on a table. Camera slow push-in, specular highlights glide across the surface, light dust motes in the air, clean studio feel, crisp focus, 5 seconds.

Negative prompt examples

  • blur, distort, low quality
  • jitter, warping, melted details, extra limbs, duplicate face
  • watermark, logo, subtitles, text artifacts, compression blocks

Best practices

  • Use a sharp, well-lit reference image; the model can’t “invent” clean details that aren’t there.
  • Keep motion instructions compatible with the image (don’t ask for a full outfit change if you only want animation).
  • If results look unstable or over-animated, lower guidance_scale and simplify motion.
  • If motion is too subtle, add clearer action verbs (turns, steps, lifts, sways) and specify a camera move.
Accessibility:This website uses AI models provided by third parties.

Kling v2.1 I2v Master API — Quick start

Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/kwaivgi/kling-v2.1-i2v-master with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Kling v2.1 I2v Master below.

HTTP example
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/kwaivgi/kling-v2.1-i2v-master" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY" \
  -d '{
    "prompt": "A cinematic shot of a city at sunset, soft golden light",
    "image": "https://example.com/your-input.jpg",
    "negative_prompt": "blurry, low quality, distorted",
    "guidance_scale": 0.5,
    "duration": 5
}'

# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY"

# When status is "completed", read the output from data.outputs[0].
Node.js example
// npm install wavespeed
const WaveSpeed = require('wavespeed');

const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env

const result = await client.run("kwaivgi/kling-v2.1-i2v-master", {
        "prompt": "A cinematic shot of a city at sunset, soft golden light",
        "image": "https://example.com/your-input.jpg",
        "negative_prompt": "blurry, low quality, distorted",
        "guidance_scale": 0.5,
        "duration": 5
});

console.log(result.outputs[0]); // → URL of the generated output
Python example
# pip install wavespeed
import wavespeed

output = wavespeed.run(
    "kwaivgi/kling-v2.1-i2v-master",
    {
    "prompt": "A cinematic shot of a city at sunset, soft golden light",
    "image": "https://example.com/your-input.jpg",
    "negative_prompt": "blurry, low quality, distorted",
    "guidance_scale": 0.5,
    "duration": 5
}
)

print(output["outputs"][0])  # → URL of the generated output

Kling v2.1 I2v Master API — Frequently asked questions

What is the Kling v2.1 I2v Master API?

Kling v2.1 I2v Master is a Kuaishou model for video generation from images, exposed as a REST API on WaveSpeedAI. Kling 2.1 Master is a premium image-to-video endpoint delivering fluid motion, cinematic visuals, and precise prompt-driven control. Ready-to-use REST API, best performance, no coldstarts, affordable pricing. You can call it programmatically or try it from the playground above.

How do I call the Kling v2.1 I2v Master API?

POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/kwaivgi/kwaivgi-kling-v2.1-i2v-master.

How much does Kling v2.1 I2v Master cost per run?

Kling v2.1 I2v Master starts at $1.30 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.

What inputs does Kling v2.1 I2v Master accept?

Key inputs: `prompt`, `image`, `duration`, `guidance_scale`, `negative_prompt`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/kwaivgi/kwaivgi-kling-v2.1-i2v-master.

How long does Kling v2.1 I2v Master take to generate?

Average end-to-end generation time on WaveSpeedAI is around 255 seconds per request — measured across recent runs. Queue time scales with global demand; live status is visible in the prediction record.

Can I use Kling v2.1 I2v Master outputs commercially?

Commercial usage rights depend on the model's license, set by its provider (Kuaishou). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.