提交Blend任务(图生图)
POST
{{BASE_URL}}/mj/submit/blend最后修改时间: 9 天前
请求参数
Header 参数
Authorization
string
可选
示例值:
Bearer {{YOUR_API_KEY}}
Body 参数application/json
base64Array
array[string]
必需
图片base64数组
示例值:
["data:image/png;base64,xxx1","data:image/png;base64,xxx2"]
dimensions
enum<string>
可选
比例: PORTRAIT(2:3); SQUARE(1:1); LANDSCAPE(3:2)
枚举值:
PORTRAITSQUARELANDSCAPE
示例值:
SQUARE
notifyHook
string
可选
回调地址, 为空时使用全局notifyHook
示例
{
"base64Array": [
"data:image/png;base64,xxx1",
"data:image/png;base64,xxx2"
],
"dimensions": "PORTRAIT",
"notifyHook": "string"
}
示例代码
返回响应
OK(200)
Created(201)
Unauthorized(401)
Forbidden(403)
Not Found(404)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer <int32>
必需
状态码: 1(提交成功), 21(已存在), 22(排队中), other(错误)
示例值:
1
description
string
描述
示例值:
提交成功
properties
object
扩展字段
result
string
任务ID
示例值:
1320098173412546
示例
未设置
最后修改时间: 9 天前