WAN 2.7 Image Edit performs prompt-driven image editing with support for multiple-image references. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Idle

$0.03per run·~33 / $1

vintage Ford Bronco parked on a street with palm trees, low angle wide shot, Venice Beach style, nighttime scene, deep blue night sky with stars, soft moonlight, street lights glowing, warm artificial lighting reflecting on the car, cinematic contrast, realistic shadows, urban night atmosphere, neon signs and subtle city lights in background, 35mm photography, ultra realistic, high detail, 4k

Generate an image that matches the exquisite silhouette outlined in Figure 1, and follows the following description: A young woman smiling on a sunny day, wearing a pair of brown round sunglasses with leopard print patterns on the frames. Her hair is neatly tied up, she wears pearl earrings, a dark blue scarf with purple star patterns around her neck, and a black leather jacket.

Spray paint the graffiti from Figure 2 onto the car in Figure 1.
Wan 2.7 Image Edit is a prompt-driven image editing model that makes targeted changes to existing images while preserving their original structure, subject identity, and composition. Upload one or more reference images, describe the edit in plain language, and get an updated image back — no masking, no manual selections required.
It's built for fast creative iteration: changing clothing, colors, materials, background mood, adding or removing objects, and applying style adjustments without rebuilding the entire scene from scratch.
Natural-language editing Describe what to change and what to keep — the model follows your intent accurately for common creative workflows.
Multi-image reference support Upload 1 to 3 input images for style, subject, or background guidance and fusion edits.
Composition preservation Designed to preserve subject identity, pose, and overall structure while applying localized changes.
Seed control Fix a seed for repeatable outputs and more consistent iteration across prompt variations.
| Parameter | Required | Description |
|---|---|---|
| images | Yes | One or more input images to edit (1–3 images, uploaded files or public URLs). |
| prompt | Yes | Edit instruction describing what to change and what to keep. |
| size | No | Output dimensions. Defaults to the original image size if not specified. |
| seed | No | Integer for reproducibility. Use a fixed seed to iterate with smaller prompt changes. -1 for random. |
Just $0.03 per run.
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/alibaba/wan-2.7/image-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 Wan 2.7 Image Edit below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/alibaba/wan-2.7/image-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",
"seed": -1
}'
# 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("alibaba/wan-2.7/image-edit", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"seed": -1
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"alibaba/wan-2.7/image-edit",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"seed": -1
}
)
print(output["outputs"][0]) # → URL of the generated outputWan 2.7 Image Edit is a Alibaba model for image editing, exposed as a REST API on WaveSpeedAI. WAN 2.7 Image Edit performs prompt-driven image editing with support for multiple-image references. 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/alibaba/alibaba-wan-2.7-image-edit.
Wan 2.7 Image Edit starts at $0.030 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`, `images`, `seed`. 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/alibaba/alibaba-wan-2.7-image-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 (Alibaba). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.