提交Shorten任务(prompt分析)
方法: POST路径: /mj/submit/shorten
bot类型,mj(默认)或niji
请求参数
Header 参数
text
Authorization
string
可选
默认值:
Bearer {{YOUR_API_KEY}}Body 参数 application/json
text
botType
enum<string>
可选
bot类型,mj(默认)或niji
枚举值:
MID_JOURNEY
NIJI_JOURNEY
示例:
MID_JOURNEY
prompt
string
提示词
必需
示例:
Cat
notifyHook
string
可选
回调地址, 为空时使用全局notifyHook
示例
{
"botType"
:
"MID_JOURNEY"
,
"prompt"
:
"Cat"
,
"notifyHook"
:
"string"
}请求示例代码
Shell
bash
curl --location --request POST '/mj/submit/shorten' \
--header 'Authorization: Bearer {{YOUR_API_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"botType": "MID_JOURNEY",
"prompt": "Cat",
"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
}