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.
Idle
$1.3per run
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.
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.
Equivalent unit price: $0.26 per second
Examples
| Duration | Price |
|---|---|
| 5s | $1.30 |
| 10s | $2.60 |
| 15s | $3.90 |
| 20s | $5.20 |
Write prompts like a director’s brief, prioritizing motion over static description:
Good pattern: A short description of the scene, then explicit motion cues, then camera movement, then mood/lighting continuity.
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.
# 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].// 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# 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 outputKling 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.
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.
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.
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.
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.
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.