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

# Midjourney リミックス

Midjourney のリミックス機能を使用して、生成済み画像を再創作・調整します。強めの調整と細かな調整の 2 つのモードに対応しており、新しいプロンプトで指定した画像をリミックス処理できます。この API は非同期処理方式を採用しているため、クライアントは task\_id を使用して最終的な生成結果を照会する必要があります。

## リクエストヘッダー

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

<ParamField header="Authorization" type="string" required={true}>
  Bearer 認証形式: Bearer \{\{API Key}}。
</ParamField>

## リクエストボディ

<ParamField body="image_no" type="integer" required={true}>
  リミックス対象の画像を指定するための画像番号。

  値の範囲：0\~3
</ParamField>

<ParamField body="task_id" type="string" required={true}>
  元画像生成タスクの一意の識別子。
</ParamField>

<ParamField body="remix_prompt" type="string" required={true}>
  新しいプロンプト。リミックス後の画像に期待する内容とスタイルを記述するために使用します。

  長さ制限：1〜8192 文字。
</ParamField>

<ParamField body="mode" type="integer" required={true}>
  Remix モード。リミックスの強度と程度を制御します。

  * `0`: 強めの調整 - 画像を大きくリミックス・変更します
  * `1`: 細かな調整 - 画像を軽微に調整・最適化します
</ParamField>

## レスポンス情報パラメータ

<ResponseField name="task_id" type="string" required={true}>
  非同期タスクの task\_id。この task\_id を使用して [タスク結果照会 API](/ja/docs/models/reference-get-async-task-result) をリクエストし、生成結果を取得してください
</ResponseField>
