curl --location --request POST 'https://api.mmchat.xyz/open/v1/midjourney/blend' \
--header 'Authorization: Bearer METACHAT_API_KEY' \
--header 'X-App-ID: METACHAT_APP_ID' \
--header 'Content-Type: application/json' \
--data-raw '{
"images": [
{
"url": "https://yyy.com/aaa.jpg",
"type": "image/jpg",
"size": 1024123,
"w": 1280,
"h": 800
},
{
"url": "https://yyy.com/aaa.jpg",
"type": "image/jpg",
"size": 1024123,
"w": 1280,
"h": 800
}
],
"dimension": "square"
}'
{
"status": "Success",
"message": "Midjourney 图片融合任务创建成功",
"data": {
"id": "6613e99751dbca13297821c4"
}
}