跳转到主要内容
POST
/
generate
/
k
/
flux2-pro-image-to-image
Flux 2 Pro 图生图
curl --request POST \
  --url https://api.sinancode.com/v1/generate/k/flux2-pro-image-to-image \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "input_urls": [
    "https://example.com/image1.png",
    "https://example.com/image2.png"
  ],
  "prompt": "The jar in image 1 is filled with capsules exactly same as image 2",
  "aspect_ratio": "auto",
  "resolution": "1K"
}
'
{
  "task_id": "01234567-89ab-cdef-0123-456789abcdef"
}
使用 Black Forest Labs 的 FLUX.2 Pro 模型进行专业级图片编辑。 模型特点:
  • 高保真编辑 - 4MP 分辨率编辑,保留原图细节与连贯性
  • 自然语言指令 - 通过文本描述即可完成复杂编辑操作
  • 多图融合 - 支持最多 10 张参考图融合生成新图像
  • 真实物理效果 - 320 亿参数模型,精准处理光影和材质

Authorizations

Authorization
string
header
required

请使用您的 API Token 进行认证

Body

application/json

Task parameters

input_urls
string[]
required

输入图片 URL 列表(必填,1-8张图片)

Required array length: 1 - 8 elements
Example:
[
"https://example.com/image1.png",
"https://example.com/image2.png"
]
prompt
string
required

提示词(必填,3-5000字符)

Required string length: 3 - 5000
Example:

"The jar in image 1 is filled with capsules exactly same as image 2"

aspect_ratio
enum<string>
default:auto

宽高比(可选,默认值 auto)

可用选项:
1:1,
4:3,
3:4,
16:9,
9:16,
3:2,
2:3,
auto
Example:

"auto"

resolution
enum<string>
default:1K

分辨率(可选,默认值 1K)

可用选项:
1K,
2K
Example:

"1K"

Response

OK

task_id
string
required

Task ID

Example:

"01234567-89ab-cdef-0123-456789abcdef"