提交Blend任务
概览
- 方法: POST
- 地址: https://api.winfull.cloud-ip.cc/mj/submit/blend
- 简介: 官方文档:https://docs.midjourney.com/hc/en-us/articles/32635189884557-Blend-Images-on-Discord
认证
- Header: Authorization: Bearer
<token>
请求参数
- Header: Authorization: Bearer
<token> - Body 类型: application/json
{
"botType": "MID_JOURNEY",
"base64Array": [
"data:image/png;base64,xxx1",
"data:image/png;base64,xxx2"
],
"dimensions": "SQUARE",
"notifyHook": "",
"state": ""
}请求示例
curl --location --request POST 'https://api.winfull.cloud-ip.cc/mj/submit/blend' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"botType": "MID_JOURNEY",
"base64Array": [
"data:image/png;base64,xxx1",
"data:image/png;base64,xxx2"
],
"dimensions": "SQUARE",
"notifyHook": "",
"state": ""
}'返回示例
🟢200Create image 示例
{
"created": 1589478378,
"data": [
{
"url": "https://..."
},
{
"url": "https://..."
}
]
}最后更新:2025-08-01 02:34:18
