> ## Documentation Index
> Fetch the complete documentation index at: https://docs.myrouter.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Midjourney Remix

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

<ParamField header="Content-Type" type="string" required={true}>
  Enum: `application/json`
</ParamField>

<ParamField header="Authorization" type="string" required={true}>
  Bearer authentication format: Bearer \{\{API Key}}.
</ParamField>

## Request Body

<ParamField body="image_no" type="integer" required={true}>
  Image number, used to specify which image to remix.

  Range: 0\~3
</ParamField>

<ParamField body="task_id" type="string" required={true}>
  The unique identifier of the original image generation task.
</ParamField>

<ParamField body="remix_prompt" type="string" required={true}>
  New prompt, used to describe the desired content and style after remixing.

  Length limit: 1-8192 characters.
</ParamField>

<ParamField body="mode" type="integer" required={true}>
  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
</ParamField>

## Response

<ResponseField name="task_id" type="string" required={true}>
  The task\_id of the async task. Use the task\_id to call the [Get Async Task Result API](/docs/models/reference-get-async-task-result) to retrieve the generated result.
</ResponseField>
