Hailuo 2.3 Fast

Hailuo 2.3 Fast 是一款強調生成速度的圖生影片模型,可將單張首幀圖片製作成 6 秒或 10 秒影片,並提供 768p 與 1080p 輸出。它適合需要快速預覽動畫方向、批次製作商品或人物短片、進行廣告版本迭代與社群媒體內容生產的情境。你可以在試驗場中調整時長、解析度與首幀圖片,在正式串接前以真實素材比較動作自然度、主體維持、畫面細節、生成速度與成本。具體可用能力與參數範圍以目前頁面為準。

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-13

能力

  • 透過目前公開任務端點生成影片
  • 即時 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://api.uniall.ai/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://api.uniall.ai/v1/videos",
    headers={"Authorization": "Bearer " + UNIALL_API_KEY},
    json=payload,
)
response.raise_for_status()
result = response.json()

JavaScript

const response = await fetch("https://api.uniall.ai/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,未顯示的欄位不應假定可用。

正式環境串接時要注意甚麼?

請驗證參數、逾時、錯誤處理與非同步影片任務狀態,並在模型更新後重新執行小範圍測試。