Kling V3 Edit is an AI model for editing and transforming images via text prompts, enabling precise modifications with natural-language instructions. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Idle

$0.028per run·~35 / $1

A young man with swept-back golden hair and angular jawline striding through a moody metropolitan street, wearing an intricately patterned gray suede jacket over a tonal gray top and dark trousers, painted in a contemporary hyperrealistic oil painting style with visible brushstrokes on the clothing texture and background architecture while maintaining photographic precision on the face and hair, the embossed floral pattern on the jacket rendered with thick impasto technique adding three-dimensional texture, background dissolving into impressionistic smears of urban gray and muted green suggesting storefronts and vehicles, warm undertone in the skin against the cool gray palette of the wardrobe, dramatic gallery-worthy portrait composition, inspired by the figurative realism of Jeremy Mann and Casey Baugh, museum-quality fine art

A powerful sumo-built samurai warrior running through a bamboo forest carrying a war drum under his right arm, rendered in authentic Edo-period ukiyo-e woodblock print style with bold black outlines and flat color fills, wearing an indigo blue yoroi armor with silver lacing and a kabuto helmet with golden crescent moon crest, his face showing fierce determination with an exaggerated kabuki theater expression, the background composed of stylized bamboo stalks in graduated green ink washes with decorative cloud patterns in gold leaf, cherry blossom petals scattered throughout the composition, traditional Japanese calligraphy text block in the upper right corner, washi paper texture visible throughout, Hokusai and Kuniyoshi inspired, authentic Edo period color palette of indigo prussian blue vermillion and saffron yellow, horizontal scroll composition
Kling Image V3 Edit is Kuaishou's image editing model that transforms existing images based on text instructions. Upload a reference image and describe the changes you want — the model applies edits while preserving the original style, structure, and identity. Supports flexible aspect ratios, resolution options, and batch generation.
Text-guided editing Describe changes in natural language — no manual masking or layer editing required.
Style preservation Maintains the original image's composition, lighting, and aesthetic while applying your edits.
Flexible aspect ratios Multiple options including 1:1, 3:4, 4:3, 9:16, 16:9 and more to fit any use case.
Resolution control Choose output resolution (1k and above) based on your quality and speed requirements.
Batch generation Generate multiple variations in a single request for rapid iteration and comparison.
Prompt Enhancer Built-in tool to automatically improve your edit descriptions for better results.
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text description of the desired edit |
| image | Yes | Reference image to edit (URL or upload) |
| aspect_ratio | No | Output aspect ratio (default: 3:4) |
| resolution | No | Output resolution (default: 1k) |
| num_images | No | Number of images to generate (default: 1) |
| output_format | No | Output format: png or jpeg (default: png) |
| Images | Cost |
|---|---|
| 1 | $0.028 |
| 2 | $0.056 |
| 4 | $0.112 |
| 10 | $0.280 |
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/kwaivgi/kling-image-v3/edit 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 Image v3 Edit below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/kwaivgi/kling-image-v3/edit" \
-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",
"aspect_ratio": "16:9",
"resolution": "1k",
"num_images": 1,
"output_format": "png",
"shot_type": "customize"
}'
# 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-image-v3/edit", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"aspect_ratio": "16:9",
"resolution": "1k",
"num_images": 1,
"output_format": "png",
"shot_type": "customize"
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"kwaivgi/kling-image-v3/edit",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"aspect_ratio": "16:9",
"resolution": "1k",
"num_images": 1,
"output_format": "png",
"shot_type": "customize"
}
)
print(output["outputs"][0]) # → URL of the generated outputKling Image v3 Edit is a Kuaishou model for image editing, exposed as a REST API on WaveSpeedAI. Kling V3 Edit is an AI model for editing and transforming images via text prompts, enabling precise modifications with natural-language instructions. Ready-to-use REST inference 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-image-v3-edit.
Kling Image v3 Edit starts at $0.028 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`, `aspect_ratio`, `resolution`, `num_images`, `output_format`. 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-image-v3-edit.
Sign up for a free WaveSpeedAI account to claim starter credits, copy your API key from /accesskey, then call the endpoint shown in the API tab of the playground. The playground also auto-generates a code sample in Python, JavaScript, or cURL for the parameters you've set.
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.