Modellss Docs
  1. Task Inquiry
  • Send Request
  • Model List and Price
  • Model APIs
    • Chat API
      • Chat
      • GPTs
      • gemini-pro
      • gpt-4-all(Image)
      • gpt-4-vision-preview
    • Chat Completions API
      • Chat Completions API
    • Image API
      • Midjourney
        • InsightFace task submission
          • Submit swap_face task
        • Task Submission
          • Perform Action
          • Submit Blend Task
          • Submit a Describe task
          • Submit a Imagine task
          • Submit Modal
          • Submit Shorten Task
        • Task Inquiry
          • Inquire about all tasks
            GET
          • Inquire about tasks based on a list of IDs
            POST
          • Paged query for tasks
            POST
          • Inquire about the task queue
            GET
          • Cancel task
            POST
          • Retrieve task with specified ID
            GET
          • Get the seed for the task image
            GET
      • DALL·E 3
        POST
      • Stable Diffusion
        POST
      • MJ Chat
        POST
      • gpt-4-all(generate images)
        POST
    • Embedding Vector Generation Interface (Embeddings)
      • Create Embeddings
    • Audio
      • Create transcription
      • Create translation
      • Text to speech
  • Help Center
    • FAQ
  1. Task Inquiry

Inquire about all tasks

GET
/mj/task/list
任务查询

Request

None

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 GET 'https://api.modelless.co/mj/task/list'

Responses

🟢200OK
application/json
Body
array of:
action
enum<string> 
optional
任务类型
Allowed values:
IMAGINEUPSCALEVARIATIONZOOMPANDESCRIBEBLENDSHORTENSWAP_FACE
buttons
array[object (可执行按钮) {5}] 
optional
customId
string 
optional
动作标识
emoji
string 
optional
图标
label
string 
optional
文本
style
integer <int32>
optional
样式: 2(Primary)、3(Green)
type
integer <int32>
optional
类型,系统内部使用
description
string 
optional
任务描述
failReason
string 
optional
失败原因
finishTime
integer <int64>
optional
结束时间
id
string 
optional
ID
imageUrl
string 
optional
图片url
progress
string 
optional
任务进度
prompt
string 
optional
提示词
promptEn
string 
optional
提示词-英文
properties
object 
optional
startTime
integer <int64>
optional
开始执行时间
state
string 
optional
自定义参数
status
enum<string> 
optional
任务状态
Allowed values:
NOT_STARTSUBMITTEDMODALIN_PROGRESSFAILURESUCCESSCANCEL
submitTime
integer <int64>
optional
提交时间
Example
[
    {
        "action": "IMAGINE",
        "buttons": [
            {
                "customId": "string",
                "emoji": "string",
                "label": "string",
                "style": 0,
                "type": 0
            }
        ],
        "description": "string",
        "failReason": "string",
        "finishTime": 0,
        "id": "string",
        "imageUrl": "string",
        "progress": "string",
        "prompt": "string",
        "promptEn": "string",
        "properties": {},
        "startTime": 0,
        "state": "string",
        "status": "NOT_START",
        "submitTime": 0
    }
]
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found
Previous
Submit Shorten Task
Next
Inquire about tasks based on a list of IDs
Built with