API Doc-CometAPI
English
  • English
  • Русский
HomeDashBoardModel Marketplace
HomeDashBoardModel Marketplace
Discord_Support
English
  • English
  • Русский
  1. 🏄🏼‍♀️ Best Practices
  • 🚀 Overview
    • Quick Start
    • Important Guidelines
    • Release Notes
    • Quickly request CometAPI via ApiDog
    • Models
  • 💬 Text Models
    • Chat
    • Responses
    • Anthropic Messages
    • Gemini Generating Content
    • Embeddings
    • Recognizing Images
  • 🖼️ Image Models
    • Midjourney
      • Midjourney Quick Start: Complete Image Generation Workflow in One Go
      • Task Fetching API
        • List by Condition
        • Fetch Single Task (most recommended)
      • Submit Video
      • Submit Editor
      • Imagine
      • Action (UPSCALE; VARIATION; REROLL; ZOOM, etc.)
      • Blend (image -> image)
      • Describe (image -> text)
      • Modal (Area Redesign & Zoom)
    • Replicate(image)
      • Create Predictions - General
      • replicate query
      • Create Task -flux-kontext-pro、max
      • Create Task -flux-1.1-pro
      • Create Task -flux-1.1-pro-ultra
    • seededit/seedream
      • bytedance-image-generation(seedream)
      • bytedance-Image Editing (seededit)
    • OpenAI
      • Images
      • gpt-4o-image generates image
      • Image Editing (gpt-image-1)
    • Gemini
      • Guide to calling gemini-2.5-flash-image (Nano Banana)
      • Gemini generates image
    • Hunyuan3D
  • 🎵 Music Models
    • Suno
      • Setting suno Version
      • Suno API Scenario Application Guide
      • Generate lyrics
      • Generate music clip
      • Upload clip
      • Submit concatenation
      • Full Track Audio Separation
      • Single Track Audio Separation
      • Create New Persona
      • add style tags
      • Single task query
      • Generate mp4 mv video
      • Timing: lyrics, audio timeline
      • Get wav format file
      • Get midi
      • Batch query tasks
  • 📺 Video Models
    • veo3
      • veo3-chat format
      • Submit video generation task
      • Query video generation status
    • sora-2
      • official
        • Create video
        • Remix video
        • Retrieve video
        • Delete video
        • Retrieve video content
      • sora-2 generate video by chat
    • runway(video)
      • official format
        • runway images raw video
        • Generate a video from a video
        • Generate an image from text
        • Upscale a video
        • Control a character
        • 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
      • Multimodal Video Editing
        • Initialize Video for Editing
        • Add Video Selection
        • Delete Video Selection
        • Clear Video Selection
        • Preview Selected Video Area
        • Create Task
      • Generating images
      • Expanded
      • Text Generation Video
      • Image Generation Video
      • Multi-Image To Video
      • Multi-Image to Image
      • Video Extension
      • virtual try-on
      • lip sync
      • effects
      • Video to audio
      • Text to audio
      • Individual queries
    • bytedance
      • bytedance-video
      • bytedance-video get
    • MiniMax Conch(video)
      • MiniMax Conch Official Documentation
      • MiniMax Conch Generation
      • MiniMax Conch Query
      • MiniMax Conch Download
  • 🔊 Audio Models
    • Create speech
    • Create transcription
    • Create translation
  • 🧩 Integration Guides
    • LiteLLM
    • Dify
    • Make
    • n8n
    • Lobe-Chat
    • COZE
    • Zapier
    • Activepieces
    • LlamaIndex
    • Continue
    • FlowiseAI
    • Chatbox
    • CherryStudio
    • Cursor
    • AnythingLLM
    • LangChain
    • BuildShip
    • gptme
    • Immersive Translation
    • Cline
    • Eudic Translation
    • ChatHub
    • OpenAI Translator
    • ChatAll Translation
    • Pot Translation
    • Zotero
    • NEXT CHAT (ChatGPT Next Web)
    • Obsidian's Text Generator Plugin
    • librechat
    • utools-ChatGPT Friend
    • avante.nvim
    • Open WebUI
    • GPT Academic Optimization (gpt_academic)
    • OpenManus
    • IntelliJ Translation Plugin
    • FastGPT
    • n8n Local Deployment
  • ⚠️ Errors
    • Error Codes & Handling
  • 📝 Code Examples
    • Text-to-Image Generation
    • Image-to-image generation URL upload
    • Regular Post Text Conversation
    • OpenAI Official Library Usage Example
    • Streamed Output
    • Json Fixed Format Output Code Display
    • Embedding code example
    • o1-preview Model Code Example
    • LangChain Usage Example (Successful Test Date: 2024-11-25)
    • Openai dall-e-3 & flux series drawing model
    • gpt, claude, gemini multimodal network image parsing example
    • Multimodal PDF File Parsing Examples for GPT, Claude, and Gemini
    • Code example
  • 🏄🏼‍♀️ Best Practices
    • Midjourney Best Practices
    • Retry Logic Documentation for CometAPI and OpenAI Official API
    • Runway Best Practices
    • Claude Code Installation and Usage Guide
    • Gemini CLI Installation and Usage Guide
    • Codex Usage Guide
    • CometAPI Account Balance Query API Usage Instructions
  • 💳 Pricing & Billing
    • About Pricing
  • 🤝🏼 Support
    • Help Center
    • Interface Stability
    • Privacy policy
    • Terms of service
    • Common Misconceptions
    • Confusion about use
  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": ""
    }
}
Modified at 2025-05-16 07:32:25
Previous
Code example
Next
Retry Logic Documentation for CometAPI and OpenAI Official API
Built with