API Doc-CometAPI
HomeDashBoardModel_Price
HomeDashBoardModel_Price
Discord_Support
  1. Best Practices
  • GET START
    • Model New Release Announcement
    • Platform notification
    • Help Center
    • Quick Start
    • About Pricing
    • About Grouping
    • Interface Stability
    • Privacy policy
    • Terms of service
    • Error code description
    • Code example
    • Must see for use
    • Common Misconceptions
    • Confusion about use
    • Best Practices
      • CometAPI Account Balance Query API Usage Instructions
      • Retry Logic Documentation for CometAPI and OpenAI Official API
      • Midjourney Best Practices
      • Runway Best Practices
  • OpenAI Compatiable Endpoint
    • gpt-4o-image generates image
    • Chat
    • Recognizing Images
    • Models
    • Embeddings
    • Images
    • Realtime
    • Image Editing (gpt-image-1)
  • Audio
    • Create speech
    • Create transcription
    • Create translation
  • Anthropic Compatiable Endpoint
    • Anthropic Claude
  • Music Generation Endpoint
    • Suno
      • Setting suno Version
      • Generate lyrics
      • Generate music clip
      • Upload clip
      • Submit concatenation
      • Single task query
      • Batch query tasks
    • Udio(Temporarily unavailable)
      • Generate music
      • Task query
  • Image Generation Endpoint
    • Midjourney(images)
      • Quick Tutorial - Complete Process in One Go
      • Task Fetching API
        • List by Condition
        • Fetch Single Task (most recommended)
      • Imagine
      • Action (UPSCALE; VARIATION; REROLL; ZOOM, etc.)
      • Blend (image -> image)
      • Describe (image -> text)
      • Modal (Area Redesign & Zoom)
    • Ideogram(images)
      • Official documentation (updated in real time)
      • Generate 3.0 (text to image)
      • Remix 3.0 (hybrid image)
      • Reframe 3.0(Reconstruction)
      • Replace Background 3.0(Background replacement)
      • Edit 3.0(Editing images)
      • ideogram Text Raw Image
      • ideogram Hybrid image
      • ideogram enlargement HD
      • ideogram describes the image
      • ideogram Edit image
    • Flux(images)
      • Generate image (replicate format)
      • flux fine-tune images(Temporarily unavailable)
      • flux generate image(Temporarily unavailable)
      • flux query
    • Replicate(image)
      • replicate Generate
      • replicate query
    • Recraft(images)
      • Appendix
      • Recraft Generate Image
      • Recraft Vectorize Image
      • Recraft Remove Background
      • Recraft Clarity Upscale
      • Recraft Create style
      • Recraft Generative Upscale
  • Video Generation Ednpoint
    • runway(video)
      • official format
        • runway images raw video
        • runway to get task details
      • Reverse Format
        • generate(text)
        • generate(Reference images)
        • Video to Video Style Redraw
        • Act-one Expression Migration
        • feed-get task
    • kling (video)
      • callback_url
      • Generating images
      • Text Generation Video
      • Image Generation Video
      • Video Extension
      • virtual try-on
      • lip sync
      • Individual queries (videos)
    • MiniMax Conch(video)
      • MiniMax Conch Official Documentation
      • MiniMax Conch Generation
      • MiniMax Conch Query
      • MiniMax Conch Download
    • luma (video)
      • Official api interface format
        • luma generate
        • luma search
    • PIKA(video)
      • pika feed
      • PIKA Reference Video Generation
      • PIKA Reference Image Generation
      • PIKA reference text generation
    • sora
      • Reverse Format
        • Create Video
        • Query Video Task
        • Create Video
  • Software Integration Guide
    • cometapi Site API Call Testing
    • OpenManus
    • Chatbox
    • CherryStudio
    • Cursor
    • ChatHub
    • COZE
    • FastGPT
    • cline
    • dify
    • gptme
    • Immersive Translation
    • Lobe-Chat
    • Zotero
    • LangChain
    • AnythingLLM
    • Eudic Translation
    • OpenAI Translator
    • ChatAll Translation
    • Pot Translation
    • GPT Academic Optimization (gpt_academic)
    • NEXT CHAT (ChatGPT Next Web)
    • Obsidian's Text Generator Plugin
    • Open WebUI
    • avante.nvim
    • librechat
    • Lazy Customer Service
    • utools-ChatGPT Friend
    • IntelliJ Translation Plugin
    • n8n
  1. Best Practices

Midjourney Best Practices

HOST: https://api.cometapi.com
All requests must include your key in the header:
headers = {"Authorization": "sk-hjbazhiawxxxxxxxxxx"}

1. Submit Imagine (Drawing) Task#

API Information#

Endpoint: https://api.cometapi.com/mj/submit/imagine
Method: POST
Request Content Type: application/json
Response Content Type: /

Request Example#

{
    "base64Array": [],
    "notifyHook": "",
    "prompt": "Cat",
    "state": ""
}

Request Parameters#

Parameter NameDescriptionRequiredData Type
base64ArrayArray of base64 encoded imagesNoarray string
promptText promptYesstring
stateCustom parameterNostring

Response Status#

Status CodeDescription
200OK
201Created
401Unauthorized
403Forbidden
404Not Found

Response Parameters#

Parameter NameDescriptionType
codeStatus code: 1(success), 21(already exists), 22(queuing), 4(internal error)integer(int32)
descriptionDescriptionstring
propertiesExtended fieldsobject
resultTask IDstring

Response Example#

{
    "code": 1,
    "description": "Submit success",
    "properties": {},
    "result": 1320098173412546
}

2. Execute Action#

API Information#

Endpoint: https://api.cometapi.com/mj/submit/action
Method: POST
Request Content Type: application/json
Response Content Type: /
Description: All associated button actions: UPSCALE, VARIATION, REROLL, ZOOM, etc.

3. Image Variations#

API Information#

Endpoint: https://api.cometapi.com/mj/submit/change
Method: POST
Request Content Type: application/json
Response Content Type: /

Request Example#

{
    "action": "UPSCALE",
    "index": 1,
    "notifyHook": "",
    "state": "",
    "taskId": "1320098173412546"
}

Request Parameters#

Parameter NameDescriptionRequiredData Type
actionUPSCALE, VARIATION, REROLLYesstring
indexNumber (1~4), required when action is UPSCALE or VARIATIONNointeger(int32)
notifyHookCallback URL, uses global notifyHook if emptyNostring
stateCustom parameterNostring
taskIdTask IDYesstring

Response Status#

Status CodeDescription
200OK
201Created
401Unauthorized
403Forbidden
404Not Found

Response Parameters#

Parameter NameDescriptionType
codeStatus code: 1(success), 21(already exists), 22(queuing), other(error)integer(int32)
descriptionDescriptionstring
propertiesExtended fieldsobject
resultTask IDstring

Response Example#

{
    "code": 1,
    "description": "Submit success",
    "properties": {},
    "result": 1320098173412546
}

4. Submit Modal (Partial Redraw, Zoom)#

API Information#

Endpoint: https://api.cometapi.com/mj/submit/modal
Method: POST
Request Content Type: application/json
Response Content Type: /
Description: For operations that require a modal dialog in Midjourney

Request Example#

{
    "maskBase64": "",
    "prompt": "",
    "taskId": "14001934816969359"
}

Request Parameters#

Parameter NameDescriptionRequiredData Type
maskBase64Base64 encoded mask for partial redrawNostring
promptText promptNostring
taskIdTask IDYesstring

Response Status#

Status CodeDescription
200OK
201Created
401Unauthorized
403Forbidden
404Not Found

Response Parameters#

Parameter NameDescriptionType
codeStatus code: 1(success), 21(already exists), 22(queuing), other(error)integer(int32)
descriptionDescriptionstring
propertiesExtended fieldsobject
resultTask IDstring

Response Example#

{
    "code": 1,
    "description": "Submit success",
    "properties": {},
    "result": 1320098173412546
}

5. Fetch Task by ID#

API Information#

Endpoint: https://api.cometapi.com/mj/task/{id}/fetch
Method: GET
Request Content Type: application/x-www-form-urlencoded
Response Content Type: /

Request Parameters#

Parameter NameDescriptionRequest TypeRequiredData Type
idTask IDpathNostring

Response Status#

Status CodeDescription
200OK
401Unauthorized
403Forbidden
404Not Found

Response Parameters#

Parameter NameDescriptionType
actionAvailable values: UPSCALE, VARIATION, REROLL, DESCRIBE, BLENDstring
descriptionTask descriptionstring
failReasonReason for failurestring
finishTimeEnd timeinteger(int64)
idTask IDstring
imageUrlImage URLstring
progressTask progressstring
promptText promptstring
promptEnText prompt in Englishstring
startTimeStart execution timeinteger(int64)
stateCustom parameterstring
statusTask status: SUBMITTED, IN_PROGRESS, FAILURE, SUCCESSstring
submitTimeSubmission timeinteger(int64)

Response Example#

{
    "id": "1712310326047513",
    "action": "UPSCALE",
    "customId": "",
    "botType": "",
    "prompt": "a lovely Japan countryside --niji 6 --ar 16:9",
    "promptEn": "a lovely Japan countryside --niji 6 --ar 16:9",
    "description": "Submit success",
    "state": "",
    "submitTime": 1712310326047,
    "startTime": 1712310328336,
    "finishTime": 1712310329602,
    "imageUrl": "https://api.cometapi.com/mj/image/1712310326047513",
    "status": "SUCCESS",
    "progress": "100%",
    "failReason": "",
    "buttons": [
        {
            "customId": "MJ::JOB::upsample_v6_2x_subtle::1::125fd761-3d07-4252-8513-8a07dce51ce7::SOLO",
            "emoji": "upscale_1",
            "label": "Upscale (Subtle)",
            "type": 2,
            "style": 2
        },
        // ... other button configurations
    ],
    "maskBase64": "",
    "properties": {
        "finalPrompt": "a lovely Japan countryside --niji 6 --ar 16:9",
        "finalZhPrompt": ""
    }
}
Previous
Retry Logic Documentation for CometAPI and OpenAI Official API
Next
Runway Best Practices
Built with