Authorization: Bearer ********************
{
"model": "expand",
"image": "https://oss.ffire.cc/files/baobao.jpg", // 支持base64与url
"aspect_ratio": "1:1", // 枚举值:Literal["1:1", "4:3", "3:4"]
"response_format": "url" // 枚举值:Literal["url", "b64_json"]
}
curl --location -g --request POST '{{YOUR_BASE_URL}}/aitools/v1/images/edits' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "expand",
"image": "https://oss.ffire.cc/files/baobao.jpg", // 支持base64与url
"aspect_ratio": "1:1", // 枚举值:Literal["1:1", "4:3", "3:4"]
"response_format": "url" // 枚举值:Literal["url", "b64_json"]
}'
{
"created": 1737109917,
"data": [
{
"b64_json": null,
"revised_prompt": null,
"url": "https://v3.fal.media/files/kangaroo/TW-cgdLTI7I7O70K69Mpu.png"
}
],
"image": null,
"metadata": null,
"timings": {
"inference": 13.284106969833374
}
}