注册

/fal-ai/wan/v2.2-a14b/image-to-image

POST https://api.quickrouter.ai/fal-ai/wan/v2.2-a14b/image-to-image 在线调试 →
Authorization

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

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

官方文档: https://fal.ai/models/fal-ai/wan/v2.2-a14b/image-to-image

请求参数

Header 参数
Authorization string
必需
示例: Bearer {{YOUR_API_KEY}}
Body 参数 application/json
image_url string
必需
参考图片URL
prompt string
可选
提示词
strength number
可选
强度。范围值:0-1
aspect_ratio string
可选
图片尺寸
num_inference_steps integer
可选
推理步骤数。范围值:2-40
enable_safety_checker boolean
可选
启用安全检查。默认值:true
enable_prompt_expansion boolean
可选
启用提示扩展
acceleration string
可选
图片生成速度。枚举值:"regular"、"none"
guidance_scale number
可选
CFG 量表。范围值:1-10
guidance_scale_2 integer
可选
第二个 CFG 量表。范围值:1-10
shift integer
可选
偏移量。范围值:1-10
image_format string
可选
图片输出格式。可选 jpeg、png
示例
{
    "image_url": "https://storage.googleapis.com/falserverless/example_inputs/wan-image-to-image-input.png",
    "prompt": "A cinematic shot of an ancient city at sunset, intricate stone buildings, warm golden light",
    "strength": 0.5,
    "aspect_ratio": "auto",
    "num_inference_steps": 27,
    "enable_safety_checker": true,
    "enable_prompt_expansion": false,
    "acceleration": "regular",
    "guidance_scale": 3.5,
    "guidance_scale_2": 4,
    "shift": 2,
    "image_format": "jpeg"
}

请求示例代码

curl --location --request POST 'https://api.quickrouter.ai/fal-ai/wan/v2.2-a14b/image-to-image' --header 'Authorization: Bearer YOUR_API_KEY' --header 'Content-Type: application/json' --data-raw '{
    "image_url": "https://storage.googleapis.com/falserverless/example_inputs/wan-image-to-image-input.png",
    "prompt": "A cinematic shot of an ancient city at sunset, intricate stone buildings, warm golden light",
    "strength": 0.5,
    "aspect_ratio": "auto",
    "num_inference_steps": 27,
    "enable_safety_checker": true,
    "enable_prompt_expansion": false,
    "acceleration": "regular",
    "guidance_scale": 3.5,
    "guidance_scale_2": 4,
    "shift": 2,
    "image_format": "jpeg"
}'
var myHeaders = new Headers();
myHeaders.append("Authorization", "Bearer YOUR_API_KEY");
myHeaders.append("Content-Type", "application/json");

var raw = JSON.stringify({
  "image_url": "https://storage.googleapis.com/falserverless/example_inputs/wan-image-to-image-input.png",
  "prompt": "A cinematic shot of an ancient city at sunset, intricate stone buildings, warm golden light",
  "strength": 0.5,
  "aspect_ratio": "auto",
  "num_inference_steps": 27,
  "enable_safety_checker": true,
  "enable_prompt_expansion": false,
  "acceleration": "regular",
  "guidance_scale": 3.5,
  "guidance_scale_2": 4,
  "shift": 2,
  "image_format": "jpeg"
});

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

fetch("https://api.quickrouter.ai/fal-ai/wan/v2.2-a14b/image-to-image", 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({
  "image_url": "https://storage.googleapis.com/falserverless/example_inputs/wan-image-to-image-input.png",
  "prompt": "A cinematic shot of an ancient city at sunset, intricate stone buildings, warm golden light",
  "strength": 0.5,
  "aspect_ratio": "auto",
  "num_inference_steps": 27,
  "enable_safety_checker": True,
  "enable_prompt_expansion": False,
  "acceleration": "regular",
  "guidance_scale": 3.5,
  "guidance_scale_2": 4,
  "shift": 2,
  "image_format": "jpeg"
})
headers = {
  'Authorization': 'Bearer YOUR_API_KEY',
  'Content-Type': 'application/json'
}
conn.request("POST", "/fal-ai/wan/v2.2-a14b/image-to-image", 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": "f88f1b41-b325-4f23-926b-da51481bf6c6",
    "response_url": "https://queue.fal.run/fal-ai/wan/requests/f88f1b41-b325-4f23-926b-da51481bf6c6",
    "status_url": "https://queue.fal.run/fal-ai/wan/requests/f88f1b41-b325-4f23-926b-da51481bf6c6/status",
    "cancel_url": "https://queue.fal.run/fal-ai/wan/requests/f88f1b41-b325-4f23-926b-da51481bf6c6/cancel",
    "logs": null,
    "metrics": {},
    "queue_position": 0
}