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