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

# Midjourney V8.1 画像生成

> - Midjourney V8.1 モデルは自然言語プロンプトによる高品質な画像生成をサポートします。Fast モードは 1 回の生成で 4 枚の画像を返します。Draft モードは 1 回の実行で 24 枚の軽量な 0.5K スケッチ画像を返します
- テキストから画像への生成と、画像から画像への生成（prompt 内で画像 URL を参照）をサポート
- V8.1 のハイライト：ネイティブ HD 出力（`quality=hd`）、前世代の約 5 倍の生成速度、テキストレンダリングの改善（引用符で囲まれたテキストがより正確にレンダリングされます）、より強力なプロンプト追従性
- V7 アセットと互換：スタイル参照（`--sref`）とオブジェクト参照（`--oref`）をサポート。[プロンプトパラメータガイド](/ja/api-manual/image-series/midjourney/midjourney-v8-1-prompt-guide)を参照
- 非同期処理モード。返されたタスク ID を使用して[ステータスを照会](/ja/api-manual/task-management/get-task-detail)
- 生成された画像リンクの有効期限は 30 日です。お早めに保存してください
- タイムアウト：約 20 分
- パラメータの注意：本インターフェースは V8.1 に固定されており、niji はサポートしていません。速度モードは `model_params.speed` で設定し、出力品質はトップレベルの `quality` パラメータで設定してください

<Note>
  Midjourneyにはコンテンツ審査機能が組み込まれています。生成された画像の一部が審査でフィルタリングされた場合、そのリクエストで消費されたクレジットは返金されません。プロンプトの内容がガイドラインに準拠しているかご確認ください。
</Note>


## OpenAPI

````yaml ja/api-manual/image-series/midjourney/mj-v8-1-image-generate.json POST /v1/images/generations
openapi: 3.1.0
info:
  title: Midjourney V8.1 画像生成インターフェース
  description: Midjourney V8.1 モデルで画像生成タスクを作成
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.evolink.ai
    description: 本番環境
security:
  - bearerAuth: []
paths:
  /v1/images/generations:
    post:
      tags:
        - 画像生成
      summary: Midjourney V8.1 画像生成インターフェース
      description: >-
        - Midjourney V8.1 モデルは自然言語プロンプトによる高品質な画像生成をサポートします。Fast モードは 1 回の生成で 4
        枚の画像を返します。Draft モードは 1 回の実行で 24 枚の軽量な 0.5K スケッチ画像を返します

        - テキストから画像への生成と、画像から画像への生成（prompt 内で画像 URL を参照）をサポート

        - V8.1 のハイライト：ネイティブ HD 出力（`quality=hd`）、前世代の約 5
        倍の生成速度、テキストレンダリングの改善（引用符で囲まれたテキストがより正確にレンダリングされます）、より強力なプロンプト追従性

        - V7
        アセットと互換：スタイル参照（`--sref`）とオブジェクト参照（`--oref`）をサポート。[プロンプトパラメータガイド](/ja/api-manual/image-series/midjourney/midjourney-v8-1-prompt-guide)を参照

        - 非同期処理モード。返されたタスク ID
        を使用して[ステータスを照会](/ja/api-manual/task-management/get-task-detail)

        - 生成された画像リンクの有効期限は 30 日です。お早めに保存してください

        - タイムアウト：約 20 分

        - パラメータの注意：本インターフェースは V8.1 に固定されており、niji はサポートしていません。速度モードは
        `model_params.speed` で設定し、出力品質はトップレベルの `quality` パラメータで設定してください
      operationId: createMjV81ImageGeneration
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ImageGenerationRequest'
            examples:
              text_to_image:
                summary: テキストから画像
                value:
                  model: mj-v8.1
                  prompt: >-
                    A cinematic shot of a Maine Coon cat on a neon-lit balcony
                    --ar 16:9 --s 500
                  quality: standard
                  model_params:
                    speed: fast
              text_to_image_hd:
                summary: テキストから画像（Fast + HD）
                value:
                  model: mj-v8.1
                  prompt: >-
                    A cinematic shot of a Maine Coon cat on a neon-lit balcony
                    --ar 16:9 --s 500
                  quality: hd
                  model_params:
                    speed: fast
              image_to_image:
                summary: 画像から画像
                value:
                  model: mj-v8.1
                  prompt: >-
                    https://example.com/ref.jpg A sunset landscape in watercolor
                    style --iw 1.5 --ar 16:9
                  quality: standard
                  model_params:
                    speed: fast
      responses:
        '200':
          description: タスク作成成功
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ImageGenerationResponse'
        '400':
          description: 無効なリクエストパラメータ
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: invalid_request
                  message: Invalid request parameters
                  type: invalid_request_error
        '401':
          description: 未認証、トークン無効または期限切れ
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: unauthorized
                  message: Invalid or expired token
                  type: authentication_error
        '402':
          description: クォータ不足、チャージしてください
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: insufficient_quota
                  message: Insufficient quota. Please top up your account.
                  type: insufficient_quota
        '403':
          description: アクセス拒否
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: model_access_denied
                  message: 'Token does not have access to model: mj-v8.1'
                  type: invalid_request_error
        '429':
          description: レート制限超過
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: rate_limit_exceeded
                  message: Too many requests, please try again later
                  type: rate_limit_error
        '500':
          description: 内部サーバーエラー
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: internal_error
                  message: Internal server error
                  type: api_error
components:
  schemas:
    ImageGenerationRequest:
      type: object
      required:
        - model
        - prompt
      properties:
        model:
          type: string
          enum:
            - mj-v8.1
          default: mj-v8.1
          description: モデル名
        prompt:
          type: string
          description: >-
            プロンプト。Midjourney V8.1 のすべてのネイティブパラメータ構文をサポートします（例：--ar 16:9 --s
            500）。


            **画像から画像：** prompt の先頭に画像 URL を配置します。対応フォーマット：.png, .gif, .webp,
            .jpg, .jpeg


            **画像から画像のルール：**

            - 画像 1 枚 + テキストなし = **無効**（エラーになります）

            - 画像 1 枚 + テキスト説明 = 有効

            - 画像 2 枚以上 + テキストなし = 有効

            - 画像 2 枚以上 + テキスト説明 = 有効
          maxLength: 1024
          example: >-
            A cinematic shot of a Maine Coon cat on a neon-lit balcony --ar 16:9
            --s 500
        quality:
          type: string
          enum:
            - standard
            - hd
          default: standard
          description: |-
            出力品質

            - `standard`：標準解像度（デフォルト）、1 倍の倍率
            - `hd`：ネイティブ HD 出力、1.5 倍の倍率。`speed: draft` とは互いに排他的です

            **料金の注意：** 品質倍率は `speed` 倍率と掛け合わされます（乗算）。
        model_params:
          type: object
          description: モデルパラメータ
          properties:
            speed:
              type: string
              enum:
                - draft
                - fast
              default: fast
              description: >-
                速度モード


                - `draft`：スケッチモード。1 回の実行で（4 枚ではなく）24 枚の軽量な 0.5K
                スケッチ画像を返します。構図のアイデアを素早く探るのに最適です。`quality: hd` とは互いに排他的です

                - `fast`：標準モード（デフォルト）


                **料金の注意：** `draft` と `fast` は同じ速度倍率（1 倍）を共有します。この速度倍率はさらに
                `quality` 倍率と掛け合わされます。
        callback_url:
          type: string
          description: >-
            タスク完了後のHTTPSコールバックアドレス


            **コールバックタイミング：**

            - タスクが完了（completed）、失敗（failed）、またはキャンセル（cancelled）されたときにトリガー

            - 課金確認完了後に送信


            **セキュリティ制限：**

            - HTTPSプロトコルのみ対応

            -
            プライベートIPアドレスへのコールバックは禁止（127.0.0.1、10.x.x.x、172.16-31.x.x、192.168.x.xなど）

            - URLの長さは`2048`文字以下


            **コールバックメカニズム：**

            - タイムアウト：`10`秒

            - 失敗後最大`3`回リトライ（それぞれ失敗の`1`秒/`2`秒/`4`秒後にリトライ）

            - コールバックレスポンスのフォーマットはタスク照会インターフェースの戻り値と同一

            - コールバックアドレスが2xxステータスコードを返した場合は成功、その他のステータスコードはリトライをトリガー
          format: uri
          example: https://your-domain.com/webhooks/image-task-completed
    ImageGenerationResponse:
      type: object
      properties:
        created:
          type: integer
          description: タスク作成タイムスタンプ
          example: 1757165031
        id:
          type: string
          description: タスクID
          example: task-unified-1757165031-mjv81
        model:
          type: string
          description: 実際に使用されたモデル名
          example: mj-v8.1
        object:
          type: string
          enum:
            - image.generation.task
          description: タスクタイプ
        progress:
          type: integer
          description: タスク進捗率 (0-100)
          minimum: 0
          maximum: 100
          example: 0
        status:
          type: string
          description: タスクステータス
          enum:
            - pending
            - processing
            - completed
            - failed
          example: pending
        task_info:
          $ref: '#/components/schemas/TaskInfo'
          description: 非同期タスク情報
        type:
          type: string
          enum:
            - text
            - image
            - audio
            - video
          description: タスク出力タイプ
          example: image
        usage:
          $ref: '#/components/schemas/Usage'
          description: 使用量と課金情報
    ErrorResponse:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              description: エラーコード識別子
            message:
              type: string
              description: エラーメッセージ
            type:
              type: string
              description: エラータイプ
    TaskInfo:
      type: object
      properties:
        can_cancel:
          type: boolean
          description: タスクがキャンセル可能かどうか
          example: true
        estimated_time:
          type: integer
          description: 推定完了時間（秒）
          minimum: 0
          example: 45
    Usage:
      type: object
      description: 使用量と課金情報
      properties:
        billing_rule:
          type: string
          description: 課金ルール
          enum:
            - per_call
            - per_token
            - per_second
          example: per_call
        credits_reserved:
          type: number
          description: 推定消費クレジット
          minimum: 0
          example: 1.8
        user_group:
          type: string
          description: ユーザーグループ
          example: default
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: |-
        ##全てのインターフェースはBearer Token認証が必要です##

        **API Keyの取得：**

        [API Key管理ページ](https://evolink.ai/dashboard/keys)にアクセスしてAPI Keyを取得してください

        **リクエストヘッダーに追加：**
        ```
        Authorization: Bearer YOUR_API_KEY
        ```

````