WAN 2.7 Image Edit API
Alibaba WAN 2.7 image editing. Standard and Pro tiers, supports up to 9 input images for fusion edits. Integrate this model via REST with endpoint docs, parameters, and code examples.
Get API Key
Create auth keys for apps and agents
See Usage
Track requests, credits, and logs
Buy Credits
Top up prepaid API capacity
API Endpoint
/api/v1/models/wan-2.7-image-edit/runTest This Model
Run a real request through the API pipeline and inspect the exact input and output your integration will handle. Uses your credits like any API call; failed runs are refunded automatically.
LLM.txt
For AI assistants
Copy this model's documentation into Claude, GPT, or any AI for instant integration help.
/llm/wan-2.7-image-edit.txtOpenAPI Spec
Swagger compatible
Import into Postman, Swagger UI, or generate client SDKs in any language.
/api/openapiParameters
Input parameters accepted by this model
| Parameter | Type | Default |
|---|---|---|
promptrequired | string | - |
image_urlsrequired | array | - |
size | enum | 2K |
seed | integer | - |
bbox_list | array | - |
See also
Related endpoints on this model — you may need a different apiId for a different operation (e.g. image edit vs generation).
- Generate/api/v1/models/wan-2.7-image/run
Example Outputs
Real outputs generated by this model
swap the background for a neon-lit city street at night, keep the cyclist and bike identical
the same man presenting a new smartphone toward the camera while standing at a marble desk, soft studio light, product-launch photo
cinematic rework of this photo: dramatic teal and orange color grade, volumetric window light, high contrast, film still
a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says "Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories."
a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says "Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories."
Code Examples
Single image edit — copy and paste to get started
curl -X POST "https://pixeldojo.ai/api/v1/models/wan-2.7-image-edit/run" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "make the sky stormy",
"image_urls": [
"https://..."
],
"model": "wan-2.7-pro"
}'Response Format
Submit Response (202 Accepted)
{
"jobId": "job_abc123...",
"status": "pending",
"statusUrl": "https://pixeldojo.ai/api/v1/jobs/job_abc123...",
"creditCost": 1,
"creditsRemaining": 95,
"expiresAt": "2026-07-15T01:55:02Z"
}Completed Response
{
"jobId": "job_abc123...",
"status": "completed",
"output": {
"images": [
"https://temp.pixeldojo.ai/pixeldojotemp/1705930123-456789.png"
]
},
"creditCost": 1,
"expiresAt": "2026-07-15T01:55:02Z"
}