Image models
Wan2.7 Image
On this page
Wan2.7 Image — fast, high-fidelity AI image generation & editing.
| modelId | wan-2-7-image |
| Modality | image |
| Pricing | See this model on the Pricing page for the current per-call price (with your markup). |
Operations
| Operation | Endpoint | Description |
|---|---|---|
| Text to image | POST /api/v1/generate | Base generation from a text prompt. |
| Image to image | POST /api/v1/generate | Condition on a reference image — upload it via /api/v1/files/upload and pass the URL. |
| Poll task | GET /api/v1/task/{id}?model=wan-2-7-image | Retrieve state and result URLs. |
Input parameters
| Field | Type | Required | Values / example |
|---|---|---|---|
| prompt | textarea | required | Enter your image generation prompt here... |
| input_urls | image | optional | Drag and drop or click to upload your image |
| bbox_list | text | optional | [[x1,y1,x2,y2], …] |
| n | number | optional | Enter number... |
| enable_sequential | select | optional | false, true |
| resolution | select | optional | 1K, 2K |
| thinking_mode | select | optional | false, true |
| aspect_ratio | select | optional | 1:1, 3:4, 4:3, 1:8, 8:1, 9:16, 16:9, 21:9 |
| watermark | select | optional | false, true |
| seed | number | optional | Enter number... |
| nsfw_checker | select | optional | false, true |
Example request
bash
curl -X POST https://you.bot/api/v1/generate \
-H "Authorization: Bearer $YOUBOT_API_KEY" \
-H "Content-Type: application/json" \
-d '{"modelId":"wan-2-7-image","input":{"prompt":"Turn this daytime street photo into a glowing dusk scene, warm shopfront lights switching on, long violet shadows stretching across the pavement and soft mist settling between the buildings.","bbox_list":"…","n":4,"enable_sequential":"false","resolution":"2K","thinking_mode":"true","aspect_ratio":"1:1","watermark":"false","seed":0,"nsfw_checker":"true"}}'