Skip to content
EN

提交Describe任务(图生文)

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

回调地址, 为空时使用全局notifyHook

请求参数

Header 参数

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

Body 参数 application/json

text
base64
string
图片base64
必需
示例:
data:image/png;base64,xxx
notifyHook
string
可选
回调地址, 为空时使用全局notifyHook
示例
{
"base64"
:
"data:image/png;base64,xxx"
,
"notifyHook"
:
"string"
}

请求示例代码

Shell

bash
curl --location --request POST '/mj/submit/describe' \
--header 'Authorization: Bearer {{YOUR_API_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "base64": "data:image/png;base64,xxx",
    "notifyHook": "string"
}'

返回响应

🟢 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