Skip to main content
POST
/
v3
/
async
/
mj-remix
Midjourney Remix
curl --request POST \
  --url https://api.highwayapi.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 previously generated images. It supports two modes: strong adjustments and subtle adjustments. You can remix a specified image using a new prompt. This API uses asynchronous processing, so the client must query the final generated result via task_id.

Request Headers

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

Request Body

image_no
integer
required
Image number, used to specify the image to remix.Value range: 0–3
task_id
string
required
The unique identifier of the original image generation task.
remix_prompt
string
required
The new prompt used to describe the desired content and style of the remixed image.Length limit: 1–8192 characters.
mode
integer
required
Remix mode, controlling the intensity and extent of the remix.
  • 0: Strong adjustment - significantly remixes and changes the image
  • 1: Subtle adjustment - makes minor adjustments and optimizations to the image

Response Parameters

task_id
string
required
The task_id of the asynchronous task. You should use this task_id to request the Get Task Result API to obtain the generated result.