---
title: "Hermes Agent x MiniMax H3 가이드"
url: "https://runapi.ai/ko/hermes-minimax-h3.md"
canonical: "https://runapi.ai/ko/hermes-minimax-h3"
locale: "ko"
model_line: "minimax-h3"
---

# Hermes Agent x MiniMax H3

텍스트-비디오와 이미지-비디오는 하나의 RunAPI 모델 ID를 사용합니다. 참조 모드는 이미지 9장, 영상 3개, 오디오 3개까지 지원하며 오디오는 이미지 또는 영상 참조와 함께 사용해야 합니다.

## 공개 버전 및 엔드포인트

| 모델 ID | 버전 | 엔드포인트 | 시작 가격 |
| --- | --- | --- | --- |
| `minimax-h3` | 텍스트, 첫·마지막 프레임, 멀티모달 참조로 최대 2K 4~15초 영상 생성 | /api/v1/minimax_h3/text_to_video, /api/v1/minimax_h3/image_to_video | $0.370 |

## 설정

`RUNAPI_API_KEY`를 설정하고 `<endpoint>`에 `<model-id>`가 포함된 요청을 보냅니다. 엔드포인트가 비동기 Task를 반환할 때만 폴링합니다.

```shell
export RUNAPI_API_KEY=your_api_key

curl -X POST https://runapi.ai/api/v1/minimax_h3/text_to_video \
  -H "Authorization: Bearer $RUNAPI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "minimax-h3",
  "prompt": "A slow aerial view of a quiet coastline at sunrise.",
  "aspect_ratio": "16:9"
}'
```

POST /api/v1/minimax_h3/text_to_video를 실행하고 반환된 Task ID를 저장합니다.
상태가 completed 또는 failed가 될 때까지 GET /api/v1/minimax_h3/text_to_video/<task-id>를 실행합니다.
completed 응답에 API 레퍼런스의 엔드포인트별 출력이 포함되는지 확인합니다.

## 추가 작업


## 사용 절차

1. **모델 ID 선택.** 공개 모델 ID를 선택하고 엔드포인트와 현재 시작 가격을 확인합니다.
2. **RunAPI 설정.** 엔드포인트 요청 전에 RUNAPI_API_KEY를 설정합니다.
3. **결과 검증.** 비동기 엔드포인트는 Task가 최종 상태가 될 때까지 같은 엔드포인트를 폴링합니다.

## 자주 묻는 질문

### 어떤 모델 ID를 사용해야 하나요?

버전 표에서 공개 모델 ID를 선택하세요. 각 ID가 제공하는 엔드포인트는 해당 행에 표시됩니다.

### 이 가이드는 채팅 모델을 설정하나요?

아니요. 이 Model Line은 여기에 표시된 엔드포인트 절차를 사용하며 Agent 채팅 모델로 제공되지 않습니다.


## 링크

- [Hermes Agent](https://runapi.ai/ko/hermes-agent)
- [MiniMax H3 - 모델 카탈로그](https://runapi.ai/ko/models/minimax-h3)
- [minimax-h3](https://runapi.ai/ko/models/minimax-h3/minimax-h3)

```json
{
  "@context": "https://schema.org",
  "@type": "SoftwareApplication",
  "name": "Hermes Agent x MiniMax H3",
  "url": "https://runapi.ai/ko/hermes-minimax-h3"
}
```
