hailuo-2.3-fast

hailuo-2.3-fast 是一款视频生成模型,主要能力包括MiniMax、快速生成、图生视频、单图动画、视频生成。它适合创意探索、产品视觉、营销素材和需要稳定 API 接入的自动化内容工作流。你可以在下方试验场中使用代表性的提示词和输入素材,调整本页提供的参数,查看模型在真实业务场景中的生成效果。正式接入前,建议结合自己的任务比较输出质量、主体一致性、处理时间、失败处理方式和预估成本。具体可用的输入方式、参数范围与输出选项以当前页面为准。

A portrait of a woman in a blue coat turning naturally toward the camera on an urban terrace
模型代码
hailuo-2.3-fast
供应商
MiniMax
API 端点
/v1/videos
计费
0.339705882353
更新时间
2026-08-15

能力

  • 通过当前公开任务端点生成视频
  • 实时 Schema 提供时支持图片、参考素材、时长或分辨率控制
  • 当前参数包括 prompt, image, duration

限制

  • 模型能力与参数范围可能更新,生产环境应锁定并验证使用的参数组合
  • 未出现在实时 Request Schema 中的参数不应假定可用
  • 异步任务需要处理轮询、失败、超时和内容安全状态

典型场景

  • 产品原型和自动化内容工作流
  • 批量媒体生成与程序化创作
  • 需要统一鉴权、计费和调用记录的多模型应用

价格与计费示例

  • 1080p / 6s | 0.339705882353 | {"operation":"video.image_to_video","output_video_seconds":{"eq":6},"resolution_tier":"1080p"}
  • 768p / 10s | 0.330882352941 | {"operation":"video.image_to_video","output_video_seconds":{"eq":10},"resolution_tier":"768p"}
  • 768p / 6s | 0.198529411765 | {"operation":"video.image_to_video","output_video_seconds":{"eq":6},"resolution_tier":"768p"}

请求参数

参数类型必填默认值可选值
modelstring
prompttextarea
imageasset_list
durationselect66, 10
resolutionselect768p768p, 1080p
prompt_optimizerbooleantrue
fast_pretreatmentbooleantrue
watermarkbooleanfalse

API 调用示例

cURL

curl -X POST 'https://mifantv.cn/api/v1/videos' \
  -H 'Authorization: Bearer $UNIALL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"duration":"6","fast_pretreatment":true,"image":["https://example.com/reference.jpg"],"model":"hailuo-2.3-fast","prompt":"Describe the output you want","prompt_optimizer":true,"resolution":"768p","watermark":false}'

Python

import json
import requests

payload = json.loads(r'''{"duration":"6","fast_pretreatment":true,"image":["https://example.com/reference.jpg"],"model":"hailuo-2.3-fast","prompt":"Describe the output you want","prompt_optimizer":true,"resolution":"768p","watermark":false}''')
response = requests.post(
    "https://mifantv.cn/api/v1/videos",
    headers={"Authorization": "Bearer " + UNIALL_API_KEY},
    json=payload,
)
response.raise_for_status()
result = response.json()

JavaScript

const response = await fetch("https://mifantv.cn/api/v1/videos", {
  method: 'POST',
  headers: {
    Authorization: `Bearer ${process.env.UNIALL_API_KEY}`,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({"duration":"6","fast_pretreatment":true,"image":["https://example.com/reference.jpg"],"model":"hailuo-2.3-fast","prompt":"Describe the output you want","prompt_optimizer":true,"resolution":"768p","watermark":false}),
});

if (!response.ok) throw new Error(`HTTP ${response.status}`);
const result = await response.json();

常见问题

hailuo-2.3-fast 的 API 端点是什么?

端点根据当前模型能力和 Request Schema 自动解析,并显示在本页 API 区域。

hailuo-2.3-fast 如何计费?

价格区域直接读取当前结构化计费配置;改价后无需重写本文。

可以使用 Python 调用吗?

可以。本页示例使用当前端点和原始模型代码标识。

是否提供 JavaScript 和 cURL 示例?

提供。三种示例共享同一实时请求结构。

支持哪些分辨率、时长或参考图参数?

支持范围取决于当前 Request Schema,未显示的字段不应假定可用。

生产环境接入时要注意什么?

请验证参数、超时、错误处理和异步视频任务状态,并在模型更新后重新运行小范围测试。