API Doc-CometAPI
HomeDashBoardModel_Price
HomeDashBoardModel_Price
Discord_Support
  1. Midjourney(images)
  • 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
        POST
      • Action (UPSCALE; VARIATION; REROLL; ZOOM, etc.)
        POST
      • Blend (image -> image)
        POST
      • Describe (image -> text)
        POST
      • Modal (Area Redesign & Zoom)
        POST
    • 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. Midjourney(images)

Action (UPSCALE; VARIATION; REROLL; ZOOM, etc.)

POST
https://api.cometapi.com/mj/submit/action
Maintainer:Not configured
Make all actions(including UPSCALE; VARIATION; REROLL; ZOOM, etc.) to the image you created through imaging api.

Request

Header Params
Authorization
string 
optional
Example:
Bearer {{api-key}}
Body Params application/json
customId
string 
required
Action ID eg:MJ::JOB::upsample::2::3dbbd469-36af-4a0f-8f02-df6c579e7011
Example:
MJ::JOB::upsample::2::3dbbd469-36af-4a0f-8f02-df6c579e7011
taskId
string 
required
Task ID, Example:14001934816969359
notifyHook
string 
optional
Callback address, use global notifyHook when null
state
string 
optional
enableRemix
boolean 
optional
Whether to use remix mode, you can force to bypass the account specified by the Remix autocommit
chooseSameChannel
boolean 
optional
Whether to select the account under the same channel, the default is to use only the account associated with the task
Example
{
    "customId": "MJ::JOB::variation::3::6cebdc5d-a856-4993-871f-aa641b0cc712",
    "taskId": "1731555401783739",
    "enableRemix": true
}

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.cometapi.com/mj/submit/action' \
--header 'Authorization: Bearer {{api-key}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "customId": "MJ::JOB::variation::3::6cebdc5d-a856-4993-871f-aa641b0cc712",
    "taskId": "1731555401783739",
    "enableRemix": true
}'

Responses

🟢200Success
application/json
Body
code
integer 
required
Status code or error code
description
string 
required
Text description of the current status or result, for user reference
result
string 
required
Task ID
properties
object 
required
Additional properties or detailed information
numberOfQueues
integer 
required
Number of tasks waiting in the current queue (before this task)
discordInstanceId
string 
required
Discord instance ID
discordChannelId
string 
required
Discord channel ID
Example
{
    "code": 1,
    "description": "Submit successfully",
    "properties": {},
    "result": 1320098173412546
}
Previous
Imagine
Next
Blend (image -> image)
Built with