> ## 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.

# Minimax H3 전체 매개변수 가이드

> Minimax H3 전체 시리즈를 위한 통합 API입니다. `model` 매개변수로 생성 모드를 선택합니다.

**3가지 생성 모드:**

| 모드 | 모델 ID | 입력 미디어 |
|:---|:---|:---|
| Text-to-Video | `minimax-h3-text-to-video` | `prompt`만 사용 |
| Image-to-Video | `minimax-h3-image-to-video` | `prompt` + `image_start` 및/또는 `image_end` |
| Reference-to-Video | `minimax-h3-reference-to-video` | `prompt` + `image_urls` / `video_urls` / `audio_urls` |

**공통 기능:**
- 출력 길이는 `5`~`15`초이며 현재는 `2k`만 지원
- 비동기 처리 방식이며 반환된 작업 ID로 [작업을 조회](/ko/api-manual/task-management/get-task-detail)
- Minimax H3 작업은 취소할 수 없음
- 생성된 비디오 URL은 24시간 동안 유효하므로 결과를 빠르게 저장하세요



## OpenAPI

````yaml ko/api-manual/video-series/minimax/minimax-h3/minimax-h3-overview.json POST /v1/videos/generations
openapi: 3.1.0
info:
  title: Minimax H3 전체 모델 API
  description: 텍스트-투-비디오, 이미지-투-비디오 및 멀티모달 참조-투-비디오 생성을 지원하는 Minimax H3 3개 모델의 통합 API
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.evolink.ai
    description: 프로덕션 환경
security:
  - bearerAuth: []
tags:
  - name: 비디오 생성
    description: AI 비디오 생성 관련 API
paths:
  /v1/videos/generations:
    post:
      tags:
        - 비디오 생성
      summary: Minimax H3 비디오 생성 (전체 모델)
      description: >-
        Minimax H3 전체 시리즈를 위한 통합 API입니다. `model` 매개변수로 생성 모드를 선택합니다.


        **3가지 생성 모드:**


        | 모드 | 모델 ID | 입력 미디어 |

        |:---|:---|:---|

        | Text-to-Video | `minimax-h3-text-to-video` | `prompt`만 사용 |

        | Image-to-Video | `minimax-h3-image-to-video` | `prompt` +
        `image_start` 및/또는 `image_end` |

        | Reference-to-Video | `minimax-h3-reference-to-video` | `prompt` +
        `image_urls` / `video_urls` / `audio_urls` |


        **공통 기능:**

        - 출력 길이는 `5`~`15`초이며 현재는 `2k`만 지원

        - 비동기 처리 방식이며 반환된 작업 ID로 [작업을
        조회](/ko/api-manual/task-management/get-task-detail)

        - Minimax H3 작업은 취소할 수 없음

        - 생성된 비디오 URL은 24시간 동안 유효하므로 결과를 빠르게 저장하세요
      operationId: createMinimaxH3VideoGeneration
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VideoGenerationRequest'
            examples:
              text_to_video:
                summary: 텍스트-투-비디오
                value:
                  model: minimax-h3-text-to-video
                  prompt: >-
                    장대한 스페이스 오페라 영화 예고편. 여성 함장이 거대한 전망창 앞에 홀로 서 있고 창밖에는 마지막 함대가
                    집결한다. 함대가 도약하자 눈부신 백색광이 폭발하고 함교가 격렬하게 흔들린다. 빛이 사라진 뒤 그녀만 고요한
                    심우주에 남겨진다. 영화 같은 조명, 느린 카메라 전진, 웅장하면서도 절제된 분위기.
                  duration: 5
                  quality: 2k
                  aspect_ratio: '16:9'
              image_to_video:
                summary: 이미지-투-비디오 (첫 프레임 기반)
                value:
                  model: minimax-h3-image-to-video
                  prompt: >-
                    전경의 라면 그릇에서 배경의 인물로 초점을 천천히 이동합니다. 김이 그릇에서 계속 피어올라 공기 중으로
                    자연스럽게 흩어집니다. 인물의 정체성과 식당 환경을 유지하면서 카메라를 살짝 앞으로 이동합니다.
                  image_start: >-
                    https://cdn.hailuoai.com/prod/hailuo_demo/testsets/H3_AA_I2VA/gallery/sr_v17_variants_seed42_43_20260724/inputs/4a3a90bf9100_KDmcbkhzYo5sjjxr9FqcVmWVnzb.png
                  duration: 5
                  quality: 2k
              reference_to_video:
                summary: 멀티모달 참조 (이미지 + 비디오 + 오디오)
                value:
                  model: minimax-h3-reference-to-video
                  prompt: >-
                    Video 1의 인물을 Image 1의 캐릭터로 교체하고 Image 1의 얼굴, 헤어스타일, 의상을
                    유지합니다. Video 1의 동작, 리듬, 구도, 카메라 움직임을 모두 보존하고 Audio 1의 목소리로
                    대사를 연기하여 입 모양을 동기화합니다.
                  image_urls:
                    - >-
                      https://cdn.hailuoai.com/prod/hailuo_demo/testsets/H3_AA_I2VA/gallery/sr_v17_variants_seed42_43_20260724/inputs/4a3a90bf9100_KDmcbkhzYo5sjjxr9FqcVmWVnzb.png
                  video_urls:
                    - >-
                      https://cdn.hailuoai.com/prod/hailuo_demo/testsets/h3_promo_eval_ref2va/gallery/sr_v2p26_trio_seed42_20260724/inputs/297573323635_00_%E8%A7%86%E9%A2%911_YnyRbxEwio_video_20260525_163755_1927e9d3.mp4
                  audio_urls:
                    - >-
                      https://cdn.hailuoai.com/prod/hailuo_demo/testsets/h3_promo_eval_ref2va/gallery/sr_v2p26_trio_seed42_20260724/inputs/f463d523c5ce_01_%E9%9F%B3%E9%A2%911_RSLcbpzJPo_6%E6%9C%885%E6%97%A5(1).mp3
                  duration: 5
                  quality: 2k
                  aspect_ratio: adaptive
      responses:
        '200':
          description: 비디오 생성 작업이 성공적으로 생성되었습니다
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VideoGenerationResponse'
        '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: 미인증, Token이 유효하지 않거나 만료됨
          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:
                    minimax-h3-text-to-video
                  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:
    VideoGenerationRequest:
      type: object
      required:
        - model
        - prompt
      properties:
        model:
          type: string
          description: >-
            비디오 생성 모델 이름입니다.


            | 모델 ID | 모드 | 미디어 매개변수 |

            |:---|:---|:---|

            | `minimax-h3-text-to-video` | 텍스트-투-비디오 | 미디어 입력을 허용하지 않음 |

            | `minimax-h3-image-to-video` | 이미지-투-비디오 | `image_start` 및/또는
            `image_end` |

            | `minimax-h3-reference-to-video` | 멀티모달 참조-투-비디오 | `image_urls` /
            `video_urls` / `audio_urls` |
          enum:
            - minimax-h3-text-to-video
            - minimax-h3-image-to-video
            - minimax-h3-reference-to-video
          example: minimax-h3-text-to-video
        prompt:
          type: string
          minLength: 1
          description: >-
            생성할 비디오 내용을 설명합니다. 필수이며 비워 둘 수 없습니다.


            **프롬프트 요구 사항:**

            - 중국어와 영어를 지원합니다

            - 중국어는 `500`자, 영어는 `1000`단어 이하를 권장합니다. 프롬프트가 너무 길면 일부 세부 사항이 무시될 수
            있습니다


            **모델별 사용법:**

            - **Text-to-Video:** 장면, 주체, 동작, 카메라, 분위기를 설명하고 미디어 필드는 전달하지 않습니다

            - **Image-to-Video:** 첫/마지막 프레임의 주체가 어떻게 움직이고 카메라가 어떻게 변할지 설명하며
            `image_start` 및/또는 `image_end`를 사용합니다

            - **Reference-to-Video:** 참조 미디어의 사용 방법을 설명합니다. 미디어는 `Image 1`,
            `Image 2`, `Video 1`, `Audio 1` 등의 이름으로 참조하고 Seedance 방식의 `@image1`
            또는 `@video1`은 사용하지 마세요. 번호는 `1`부터 시작하며 각 URL 배열의 순서와 일치해야 합니다
          example: >-
            영화 같은 장면. 우주비행사가 달 기지 전망창 앞에 서 있고 카메라가 천천히 전진하는 동안 먼 지평선 위로 지구가
            떠오릅니다.
        image_start:
          type: string
          format: uri
          description: >-
            **적용 모델:**

            - `minimax-h3-image-to-video`만 해당

            - 텍스트-투-비디오와 참조-투-비디오는 이 매개변수를 지원하지 않습니다


            시작 프레임 이미지의 HTTP(S) URL입니다.


            **조합 규칙:**

            - `image_start`와 `image_end` 중 하나 이상을 제공해야 합니다

            - `image_start`만 제공: 시작 프레임 이미지로 동영상 생성

            - 둘 다 제공: 시작 및 종료 프레임 사이의 동영상 생성

            - 시작 프레임은 최대 `1`개이며 이 필드는 URL 하나를 받습니다


            **이미지 요구 사항:**

            - 형식: JPG, JPEG, PNG, WEBP, HEIC, HEIF

            - 파일 크기: `30MB` 이하

            - 너비와 높이: 각각 `256`~`5760` px

            - 화면 비율(너비/높이): `0.4`~`2.5`

            - URL은 HTTP(S)를 사용하고 서비스에서 직접 접근할 수 있어야 합니다

            - 전체 JSON 요청 본문은 `64MB`를 초과할 수 없으며 Base64 및 `mm_file://` 입력은 허용하지
            않습니다
          example: >-
            https://cdn.hailuoai.com/prod/hailuo_demo/testsets/H3_AA_I2VA/gallery/sr_v17_variants_seed42_43_20260724/inputs/4a3a90bf9100_KDmcbkhzYo5sjjxr9FqcVmWVnzb.png
        image_end:
          type: string
          format: uri
          description: >-
            **적용 모델:**

            - `minimax-h3-image-to-video`만 해당

            - 텍스트-투-비디오와 참조-투-비디오는 이 매개변수를 지원하지 않습니다


            종료 프레임 이미지의 HTTP(S) URL입니다.


            **조합 규칙:**

            - `image_end`와 `image_start` 중 하나 이상을 제공해야 합니다

            - `image_end`만 제공: 이 프레임으로 끝나는 자연스러운 움직임 생성

            - 둘 다 제공: 시작 및 종료 프레임 사이의 동영상 생성

            - 종료 프레임은 최대 `1`개이며 이 필드는 URL 하나를 받습니다


            **이미지 요구 사항:**

            - 형식: JPG, JPEG, PNG, WEBP, HEIC, HEIF

            - 파일 크기: `30MB` 이하

            - 너비와 높이: 각각 `256`~`5760` px

            - 화면 비율(너비/높이): `0.4`~`2.5`

            - URL은 HTTP(S)를 사용하고 서비스에서 직접 접근할 수 있어야 합니다

            - 전체 JSON 요청 본문은 `64MB`를 초과할 수 없으며 Base64 및 `mm_file://` 입력은 허용하지
            않습니다
          example: >-
            https://images.unsplash.com/photo-1515003197210-e0cd71810b5f?auto=format&fit=crop&w=1920&q=85
        image_urls:
          type: array
          description: >-
            **적용 모델:**

            - `minimax-h3-reference-to-video`만 해당

            - 텍스트-투-비디오와 이미지-투-비디오는 이 매개변수를 지원하지 않습니다


            참조 이미지 HTTP(S) URL 배열입니다. 기본값은 `[]`이며 최대 `9`개입니다.


            **역할 및 번호:**

            - 모든 이미지는 `reference_image`로 사용됩니다

            - 첫 번째 항목은 `Image 1`, 두 번째 항목은 `Image 2`입니다


            **이미지 요구 사항:**

            - 형식: JPG, JPEG, PNG, WEBP, HEIC, HEIF

            - 파일 크기: 이미지당 `30MB` 이하

            - 너비와 높이: 각각 `256`~`5760` px

            - 화면 비율(너비/높이): `0.4`~`2.5`

            - URL은 HTTP(S)를 사용하고 서비스에서 직접 접근할 수 있어야 합니다

            - 전체 JSON 요청 본문은 `64MB`를 초과할 수 없으며 Base64 및 `mm_file://` 입력은 허용하지
            않습니다


            **조합 규칙:**

            - 참조 이미지 `1`개 이상 또는 참조 동영상 `1`개 이상을 제공해야 합니다

            - `audio_urls`만 전달하면 매개변수 오류가 반환됩니다
          default: []
          maxItems: 9
          items:
            type: string
            format: uri
          example:
            - >-
              https://cdn.hailuoai.com/prod/hailuo_demo/testsets/H3_AA_I2VA/gallery/sr_v17_variants_seed42_43_20260724/inputs/4a3a90bf9100_KDmcbkhzYo5sjjxr9FqcVmWVnzb.png
        video_urls:
          type: array
          description: >-
            **적용 모델:**

            - `minimax-h3-reference-to-video`만 해당

            - 텍스트-투-비디오와 이미지-투-비디오는 이 매개변수를 지원하지 않습니다


            참조 동영상 HTTP(S) URL 배열입니다. 기본값은 `[]`이며 최대 `3`개입니다.


            **역할 및 번호:**

            - 모든 동영상은 `reference_video`로 사용됩니다

            - 첫 번째 항목은 `Video 1`, 두 번째 항목은 `Video 2`입니다


            **동영상 요구 사항:**

            - 컨테이너: MP4(`.mp4`), MOV(`.mov`)

            - 동영상 코덱: H.264/AVC, H.265/HEVC

            - 내장 오디오 코덱: AAC, MP3

            - 파일 크기: 동영상당 `50MB` 이하

            - 길이: 클립당 `2`~`15`초, 모든 참조 동영상의 합계는 `15`초 이하

            - 너비와 높이: 각각 `256`~`5760` px

            - 화면 비율(너비/높이): `0.4`~`2.5`

            - 프레임률: `23.976`~`60` FPS

            - URL은 HTTP(S)를 사용하고 서비스에서 직접 접근할 수 있어야 합니다

            - 전체 JSON 요청 본문은 `64MB`를 초과할 수 없으며 Base64 및 `mm_file://` 입력은 허용하지
            않습니다


            **요금:**

            - 참조 동영상 입력 길이도 과금됩니다


            **조합 규칙:**

            - 참조 이미지 `1`개 이상 또는 참조 동영상 `1`개 이상을 제공해야 합니다

            - `audio_urls`만 전달하면 매개변수 오류가 반환됩니다
          default: []
          maxItems: 3
          items:
            type: string
            format: uri
          example:
            - >-
              https://cdn.hailuoai.com/prod/hailuo_demo/testsets/h3_promo_eval_ref2va/gallery/sr_v2p26_trio_seed42_20260724/inputs/297573323635_00_%E8%A7%86%E9%A2%911_YnyRbxEwio_video_20260525_163755_1927e9d3.mp4
        audio_urls:
          type: array
          description: >-
            **적용 모델:**

            - `minimax-h3-reference-to-video`만 해당

            - 텍스트-투-비디오와 이미지-투-비디오는 이 매개변수를 지원하지 않습니다


            참조 오디오 HTTP(S) URL 배열입니다. 기본값은 `[]`이며 최대 `3`개입니다.


            **역할 및 번호:**

            - 모든 오디오는 `reference_audio`로 사용됩니다

            - 첫 번째 항목은 `Audio 1`, 두 번째 항목은 `Audio 2`입니다


            **오디오 요구 사항:**

            - 형식: WAV, MP3

            - 파일 크기: 클립당 `15MB` 이하

            - 길이: 클립당 `2`~`15`초, 모든 참조 오디오의 합계는 `15`초 이하

            - URL은 HTTP(S)를 사용하고 서비스에서 직접 접근할 수 있어야 합니다

            - 전체 JSON 요청 본문은 `64MB`를 초과할 수 없으며 Base64 및 `mm_file://` 입력은 허용하지
            않습니다


            **조합 규칙:**

            - 참조 오디오만 단독으로 사용할 수 없습니다

            - `audio_urls`를 사용할 때는 참조 이미지 `1`개 이상 또는 참조 동영상 `1`개 이상을 함께 제공해야 합니다
          default: []
          maxItems: 3
          items:
            type: string
            format: uri
          example:
            - >-
              https://cdn.hailuoai.com/prod/hailuo_demo/testsets/h3_promo_eval_ref2va/gallery/sr_v2p26_trio_seed42_20260724/inputs/f463d523c5ce_01_%E9%9F%B3%E9%A2%911_RSLcbpzJPo_6%E6%9C%885%E6%97%A5(1).mp3
        duration:
          type: integer
          description: |-
            출력 동영상 길이(초)입니다. 기본값은 `5`초입니다.

            **값 제한:**
            - `5`부터 `15`까지의 정수만 지원하며 양쪽 경곗값을 포함합니다
            - 소수, 숫자 문자열, `auto`, `-1`은 지원하지 않습니다
            - 출력 길이는 요금에 직접 영향을 줍니다

            **적용 모델:**
            - Minimax H3 3개 모델 모두
          default: 5
          minimum: 5
          maximum: 15
          example: 5
        quality:
          type: string
          description: |-
            출력 동영상 해상도입니다. 기본값은 `2k`입니다.

            **사용 가능한 값:**
            - `2k`: 현재 지원하는 유일한 해상도

            **참고:**
            - `768p`는 아직 제공되지 않으며 전달하면 매개변수 오류가 반환됩니다
            - 출력 비트레이트, 프레임률, 동영상 코덱, 오디오 코덱은 플랫폼에서 결정하며 요청으로 설정할 수 없습니다

            **적용 모델:**
            - Minimax H3 3개 모델 모두
          enum:
            - 2k
          default: 2k
          example: 2k
        aspect_ratio:
          type: string
          description: >-
            출력 비디오 화면비입니다. 기본값은 `adaptive`입니다.


            **적용 모델:**

            - `minimax-h3-text-to-video` 지원

            - `minimax-h3-reference-to-video` 지원

            - **`minimax-h3-image-to-video`에서는 지원하지 않으므로 이미지-투-비디오 요청에 이 매개변수를
            보내지 마세요**


            **사용 가능한 값:**

            - `adaptive`: 프롬프트 또는 참조 미디어에 따라 모델이 적절한 화면비를 선택

            - `21:9`: 울트라와이드

            - `16:9`: 가로

            - `4:3`: 표준 가로

            - `1:1`: 정사각형

            - `3:4`: 표준 세로

            - `9:16`: 세로
          enum:
            - adaptive
            - '21:9'
            - '16:9'
            - '4:3'
            - '1:1'
            - '3:4'
            - '9:16'
          default: adaptive
          example: adaptive
        callback_url:
          type: string
          description: >-
            작업 완료 후 HTTPS 콜백 주소


            **콜백 시점:**

            - 작업 완료(completed) 또는 실패(failed) 시 트리거

            - 과금 확인 완료 후 전송


            **보안 제한:**

            - 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`초 후 재시도)

            - 콜백 응답 본문 형식은 작업 조회 API 반환 형식과 동일

            - 2xx 상태 코드를 성공으로 간주하며, 다른 상태 코드는 재시도를 트리거합니다


            **적용 모델:**

            - Minimax H3 3개 모델 모두
          format: uri
          example: https://your-domain.com/webhooks/video-task-completed
          pattern: ^https://
      additionalProperties: false
    VideoGenerationResponse:
      type: object
      properties:
        created:
          type: integer
          description: 작업 생성 타임스탬프
          example: 1761313744
        id:
          type: string
          description: 작업 ID
          example: task-unified-1774857405-abc123
        model:
          type: string
          description: 실제 사용된 모델 이름
          example: minimax-h3-text-to-video
        object:
          type: string
          enum:
            - video.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/VideoTaskInfo'
          description: 비디오 작업 상세 정보
        type:
          type: string
          enum:
            - text
            - image
            - audio
            - video
          description: 작업의 출력 유형
          example: video
        usage:
          $ref: '#/components/schemas/VideoUsage'
          description: 사용량 및 과금 정보
    ErrorResponse:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              description: 오류 코드 식별자
            message:
              type: string
              description: 오류 설명 정보
            type:
              type: string
              description: 오류 유형
    VideoTaskInfo:
      type: object
      properties:
        can_cancel:
          type: boolean
          description: 작업 취소 가능 여부입니다. Minimax H3 작업은 취소할 수 없으며 항상 `false`입니다.
          example: false
          enum:
            - false
          default: false
        estimated_time:
          type: integer
          description: 예상 완료 시간(초)
          minimum: 0
          example: 165
        video_duration:
          type: integer
          description: 비디오 길이(초)
          example: 8
    VideoUsage:
      type: object
      description: 사용량 및 과금 정보
      properties:
        billing_rule:
          type: string
          description: 과금 규칙
          enum:
            - per_call
            - per_token
            - per_second
          example: per_second
        credits_reserved:
          type: number
          description: 예상 소비 크레딧 수
          minimum: 0
          example: 50
        user_group:
          type: string
          description: 사용자 그룹 카테고리
          example: default
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: |-
        ##모든 API는 Bearer Token 인증이 필요합니다##

        **API Key 얻기:**

        [API Key 관리 페이지](https://evolink.ai/dashboard/keys)에서 API Key를 받으세요

        **요청 헤더에 다음을 추가하세요:**
        ```
        Authorization: Bearer YOUR_API_KEY
        ```

````