Skip to main content
POST
/
v3
/
async
/
mj-remix
Midjourney Remix
curl --request POST \
  --url https://api.myrouter.ai/v3/async/mj-remix \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '
{
  "image_no": 123,
  "task_id": "<string>",
  "remix_prompt": "<string>",
  "mode": 123
}
'
{
  "task_id": "<string>"
}
Use the Midjourney Remix feature to recreate and adjust a generated image. Supports both strong and subtle adjustment modes, reshaping a specified image using a new prompt. This endpoint uses async processing; the client needs to query the final result using the task_id.

Request Headers

Content-Type
string
required
Enum: application/json
Authorization
string
required
Bearer authentication format: Bearer {{API Key}}.

Request Body

image_no
integer
required
Image number, used to specify which image to remix.Range: 0~3
task_id
string
required
The unique identifier of the original image generation task.
remix_prompt
string
required
New prompt, used to describe the desired content and style after remixing.Length limit: 1-8192 characters.
mode
integer
required
Remix mode, controls the intensity and degree of remixing.
  • 0: Strong adjustment - makes significant changes to the image
  • 1: Subtle adjustment - makes minor tweaks and optimizations to the image

Response

task_id
string
required
The task_id of the async task. Use the task_id to call the Get Async Task Result API to retrieve the generated result.