注册

/fal-ai/qwen-image-edit-plus

POST https://api.quickrouter.ai/fal-ai/qwen-image-edit-plus 在线调试 →
Authorization

在 Header 添加参数 Authorization,其值为 Bearer 之后拼接 Token

示例: Authorization: Bearer ********************

官方文档: https://fal.ai/models/fal-ai/qwen-image-edit-plus

请求参数

Header 参数
Authorization string
必需
示例: Bearer {{YOUR_API_KEY}}
Body 参数 application/json
prompt string
必需
提示词
image_urls array[string]
必需
参考图片URL数组
image_size string
可选
图片尺寸。枚举值:square、square_hd、landscape_4_3、landscape_16_9、portrait_3_4、portrait_9_16
negative_prompt string
可选
反向提示词
num_inference_steps integer
可选
推理步骤数。默认值:50 范围值:2-100
guidance_scale integer
可选
引导量表。默认值:4 范围值:0-20
num_images integer
可选
生成图片数量。默认值:1 范围值:1-4
enable_safety_checker boolean
可选
启用安全检查器。默认值:true
output_format string
可选
输出图片格式。可选 jpeg、png
示例
{
    "prompt": "Close shot portrait of a woman in front of this car on this highway",
    "image_size": "square_hd",
    "num_inference_steps": 50,
    "guidance_scale": 4,
    "num_images": 1,
    "enable_safety_checker": true,
    "output_format": "png",
    "image_urls": [
        "https://v3.fal.media/files/monkey/i3saq4bAPXSIl08nZtq9P.png",
        "https://v3.fal.media/files/penguin/BCOZpteRhSQFuOXpbBOa.png",
        "https://v3.fal.media/files/tiger/sCoZhBksx9DvwSR4.png"
    ],
    "negative_prompt": "blurry, ugly"
}

请求示例代码

curl --location --request POST 'https://api.quickrouter.ai/fal-ai/qwen-image-edit-plus' --header 'Authorization: Bearer YOUR_API_KEY' --header 'Content-Type: application/json' --data-raw '{
    "prompt": "Close shot portrait of a woman in front of this car on this highway",
    "image_size": "square_hd",
    "num_inference_steps": 50,
    "guidance_scale": 4,
    "num_images": 1,
    "enable_safety_checker": true,
    "output_format": "png",
    "image_urls": [
        "https://v3.fal.media/files/monkey/i3saq4bAPXSIl08nZtq9P.png",
        "https://v3.fal.media/files/penguin/BCOZpteRhSQFuOXpbBOa.png",
        "https://v3.fal.media/files/tiger/sCoZhBksx9DvwSR4.png"
    ],
    "negative_prompt": "blurry, ugly"
}'
var myHeaders = new Headers();
myHeaders.append("Authorization", "Bearer YOUR_API_KEY");
myHeaders.append("Content-Type", "application/json");

var raw = JSON.stringify({
  "prompt": "Close shot portrait of a woman in front of this car on this highway",
  "image_size": "square_hd",
  "num_inference_steps": 50,
  "guidance_scale": 4,
  "num_images": 1,
  "enable_safety_checker": true,
  "output_format": "png",
  "image_urls": [
    "https://v3.fal.media/files/monkey/i3saq4bAPXSIl08nZtq9P.png",
    "https://v3.fal.media/files/penguin/BCOZpteRhSQFuOXpbBOa.png",
    "https://v3.fal.media/files/tiger/sCoZhBksx9DvwSR4.png"
  ],
  "negative_prompt": "blurry, ugly"
});

var requestOptions = {
  method: 'POST',
  headers: myHeaders,
  body: raw,
  redirect: 'follow'
};

fetch("https://api.quickrouter.ai/fal-ai/qwen-image-edit-plus", requestOptions)
  .then(response => response.text())
  .then(result => console.log(result))
  .catch(error => console.log('error', error));
import http.client
import json

conn = http.client.HTTPSConnection("api.quickrouter.ai")
payload = json.dumps({
  "prompt": "Close shot portrait of a woman in front of this car on this highway",
  "image_size": "square_hd",
  "num_inference_steps": 50,
  "guidance_scale": 4,
  "num_images": 1,
  "enable_safety_checker": True,
  "output_format": "png",
  "image_urls": [
    "https://v3.fal.media/files/monkey/i3saq4bAPXSIl08nZtq9P.png",
    "https://v3.fal.media/files/penguin/BCOZpteRhSQFuOXpbBOa.png",
    "https://v3.fal.media/files/tiger/sCoZhBksx9DvwSR4.png"
  ],
  "negative_prompt": "blurry, ugly"
})
headers = {
  'Authorization': 'Bearer YOUR_API_KEY',
  'Content-Type': 'application/json'
}
conn.request("POST", "/fal-ai/qwen-image-edit-plus", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))

返回响应

响应参数 application/json
status string
可选
任务状态
request_id string
可选
请求ID
response_url string
可选
获取结果的URL
status_url string
可选
状态查询URL
cancel_url string
可选
取消任务URL
logs null
可选
日志
metrics object
可选
指标数据
queue_position integer
可选
队列位置
示例
{
    "status": "IN_QUEUE",
    "request_id": "9c08e7d8-312c-402d-a691-c207a9cb8121",
    "response_url": "https://queue.fal.run/fal-ai/qwen-edit-plus/requests/9c08e7d8-312c-402d-a691-c207a9cb8121",
    "status_url": "https://queue.fal.run/fal-ai/qwen-edit-plus/requests/9c08e7d8-312c-402d-a691-c207a9cb8121/status",
    "cancel_url": "https://queue.fal.run/fal-ai/qwen-edit-plus/requests/9c08e7d8-312c-402d-a691-c207a9cb8121/cancel",
    "logs": null,
    "metrics": {},
    "queue_position": 0
}