- Send Request
- Model List and Price
- Model APIs
- Chat API
- Chat Completions API
- Image API
- Midjourney
- InsightFace task submission
- Task Submission
- Task Inquiry
- DALL·E 3POST
- Stable DiffusionPOST
- MJ ChatPOST
- gpt-4-all(generate images)POST
- Embedding Vector Generation Interface (Embeddings)
- Audio
- Help Center
Submit a Describe task
POST
/mj/submit/describe
任务提交
Request
Body Params application/json
botType
enum<string>
optional
Allowed values:
MID_JOURNEYNIJI_JOURNEY
Example:
MID_JOURNEY
base64
string
required
Example:
data:image/png;base64,xxx
accountFilter
object (账号筛选条件)
optional
instanceId
string
optional
modes
array[string]
optional
Allowed values:
RELAXFASTTURBO
remix
boolean
optional
remixAutoConsidered
boolean
optional
remix自动提交
视为 账号的remix为false
notifyHook
string
optional
state
string
optional
Example
{
"botType": "MID_JOURNEY",
"base64": "data:image/png;base64,xxx",
"accountFilter": {
"instanceId": "string",
"modes": [
"RELAX"
],
"remix": true,
"remixAutoConsidered": true
},
"notifyHook": "string",
"state": "string"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.modelless.co/mj/submit/describe' \
--header 'Content-Type: application/json' \
--data-raw '{
"botType": "MID_JOURNEY",
"base64": "data:image/png;base64,xxx",
"accountFilter": {
"instanceId": "string",
"modes": [
"RELAX"
],
"remix": true,
"remixAutoConsidered": true
},
"notifyHook": "string",
"state": "string"
}'
Responses
🟢200OK
application/json
Body
code
integer <int32>
required
Example:
1
description
string
required
Example:
提交成功
properties
object
optional
result
string
optional
Example:
1320098173412546
Example
{
"code": 1,
"description": "提交成功",
"properties": {},
"result": 1320098173412546
}
🟢201Created
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found