---
title: "OpenClaw x MiniMax H3 使用指南"
url: "https://runapi.ai/zh-CN/openclaw-minimax-h3.md"
canonical: "https://runapi.ai/zh-CN/openclaw-minimax-h3"
locale: "zh-CN"
model_line: "minimax-h3"
---

# OpenClaw x MiniMax H3

文生视频和图生视频共用一个 RunAPI 模型 ID。参考模式最多支持 9 张图片、3 段视频和 3 段音频；音频参考必须与图片或视频参考一起使用。

## 公开版本与端点

| 模型 ID | 版本 | 端点 | 起步价格 |
| --- | --- | --- | --- |
| `minimax-h3` | 文本、首尾帧或多模态参考生成 4-15 秒、最高 2K 视频 | /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。
GET /api/v1/minimax_h3/text_to_video/<task-id>，直到状态为 completed 或 failed。
确认 completed 响应包含 API 参考中记录的端点专属输出。

## 其他操作


## 使用流程

1. **选择模型 ID.** 选择公开模型 ID，并查看其端点与当前起步价格。
2. **配置 RunAPI.** 调用端点前设置 RUNAPI_API_KEY。
3. **验证结果.** 对于异步端点，轮询同一端点，直到 Task 进入终态。

## 常见问题

### 应该使用哪个模型 ID？

从版本表选择公开模型 ID。每个 ID 可使用的端点均显示在对应行。

### 本指南会配置聊天模型吗？

不会。该 Model Line 使用页面所示的端点流程，不会被描述为 Agent 聊天模型。


## 相关链接

- [OpenClaw](https://runapi.ai/zh-CN/openclaw)
- [MiniMax H3 - 模型目录](https://runapi.ai/zh-CN/models/minimax-h3)
- [minimax-h3](https://runapi.ai/zh-CN/models/minimax-h3/minimax-h3)

```json
{
  "@context": "https://schema.org",
  "@type": "SoftwareApplication",
  "name": "OpenClaw x MiniMax H3",
  "url": "https://runapi.ai/zh-CN/openclaw-minimax-h3"
}
```
