Skip to content
EN

提交Imagine任务(文生图、文图生图)

方法: POST路径: /mj/submit/imagine

垫图base64数组

请求参数

Header 参数

text
Authorization
string
可选
默认值:
Bearer {{YOUR_API_KEY}}

Body 参数 application/json

text
base64Array
array
[string]
可选
垫图base64数组
prompt
string
提示词
必需
示例:
Cat
示例
{
"base64Array"
:
[
"string"
]
,
"prompt"
:
"Cat"
}

请求示例代码

Shell

bash
curl --location --request POST '/mj/submit/imagine' \
--header 'Authorization: Bearer {{YOUR_API_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "base64Array": [
        "string"
    ],
    "prompt": "Cat"
}'

返回响应

🟢 200 OK

内容类型: application/json

响应结构

text
code
integer
<int32>
必需
状态码: 1(提交成功), 21(已存在), 22(排队中), other(错误)
示例:
1
description
string
描述
必需
示例:
提交成功
properties
object
扩展字段
可选
result
string
任务ID
可选
示例:
1320098173412546

示例

json
{
    "code": 1,
    "description": "提交成功",
    "properties": {},
    "result": 1320098173412546
}

🟢 201 Created

🟠 401 Unauthorized

🟠 403 Forbidden

🟠 404 Not Found