Skip to main content
POST
/
qwen-image-edit-plus-2025-10-30
/
async
Qwen Image Edit Plus 2025-10-30
curl --request POST \
  --url https://modellixapi.jpushoa.com/api/v1/image-to-image/alibaba/qwen-image-edit-plus-2025-10-30/async \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "images": [
    "https://example.com/input.jpg"
  ],
  "prompt": "Change the background to a beach scene"
}
'
{
  "code": 0,
  "message": "success",
  "data": {
    "status": "succeeded",
    "task_id": "task-abc123",
    "model_id": "qwen-image-edit-plus",
    "results": [
      {
        "image_url": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

API Key authentication. Format: Bearer YOUR_API_KEY.

Body

application/json
images
string<uri>[]
required

Input image URL array, supports 1-3 images

Required array length: 1 - 3 elements
Example:
["https://example.com/input.jpg"]
prompt
string
required

Image editing instruction (positive prompt)

Required string length: 1 - 800
Example:

"Change the background to a beach scene"

negative_prompt
string

Negative prompt describing unwanted content

Maximum string length: 500
n
integer
default:1

Number of output images

Required range: 1 <= x <= 6
size
string

Output image resolution (format: widthheight, e.g., 10242048)

Example:

"1024*1024"

prompt_extend
boolean
default:true

Enable intelligent prompt rewriting

seed
integer

Random seed for reproducibility

Required range: 0 <= x <= 2147483647

Response

Task completed successfully (synchronous)

code
integer
required

Response code, 0 indicates success

Example:

0

message
string
required

Response message

Example:

"success"

data
object
required