WAN 2.7 Image Edit Pro performs prompt-driven image editing with multi-image reference support and up to 2K output. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Idle

$0.075per run·~13 / $1

Color-match the skirt in Figure 1 according to the colors of the bird in Figure 2, full of artistic sense, keeping the clothing style unchanged and the model unchanged.Props: Folding fan / Thread-bound book / Round-frame glasses Color Palette: Warm yellow / Dark cyan / Sepia

Print this pattern on a T-shirt and a paper tote bag. A female model is showcasing these items. The girl is also wearing a baseball cap with the words 'Be kind' written on it.
![[Basic Facial Description] The character's appearance is based on Reference Figure 1, wearing a dark cyan long gown, round gold-rimmed glasses, and holding a folding fan. The background is an old Shanghai study room with wooden bookshelves, warm yellow tones, vintage film texture, soft side lighting, dust particles dancing in the light beams, cultural atmosphere, quiet and restrained. Shot on Hasselblad medium format, 85mm lens, high resolution, cinematic color grading, Wong Kar-wai style.
Props: Folding fan / Thread-bound book / Round-frame glasses
Color Palette: Warm yellow / Dark cyan / Sepia](https://static.wavespeed.ai/examples/370b298c8a4d4375ae2888387321021a/1.png)
[Basic Facial Description] The character's appearance is based on Reference Figure 1, wearing a dark cyan long gown, round gold-rimmed glasses, and holding a folding fan. The background is an old Shanghai study room with wooden bookshelves, warm yellow tones, vintage film texture, soft side lighting, dust particles dancing in the light beams, cultural atmosphere, quiet and restrained. Shot on Hasselblad medium format, 85mm lens, high resolution, cinematic color grading, Wong Kar-wai style. Props: Folding fan / Thread-bound book / Round-frame glasses Color Palette: Warm yellow / Dark cyan / Sepia
Wan 2.7 Image Edit Pro is the professional tier of prompt-driven image editing model, delivering higher-fidelity results for production-grade workflows. Upload one or more reference images, describe the edit in plain language, and get a high-resolution updated image — while preserving the original structure, subject identity, and composition.
Ideal for retouching product shots, high-resolution background swaps, detailed style transfers, and any editing task where maximum output quality matters.
Higher resolution output Generate edited images at up to 2048×2048 for print-ready assets, large-format displays, and high-DPI screens.
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.075 per run.
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/alibaba/wan-2.7/image-edit-pro 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 Pro below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/alibaba/wan-2.7/image-edit-pro" \
-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-pro", {
"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-pro",
{
"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 Pro is a Alibaba model for image editing, exposed as a REST API on WaveSpeedAI. WAN 2.7 Image Edit Pro performs prompt-driven image editing with multi-image reference support and up to 2K output. 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-pro.
Wan 2.7 Image Edit Pro starts at $0.075 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-pro.
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.