🎬

MiniMax Hailuo H3 Max

Watermark notice — Video models on NovAI are served by Chinese providers (MiniMax, Tencent) and may burn a visible AI-generated label into the output under China’s labelling rules — NovAI cannot switch it off. In our tests output labelling varies by model. Text and chat models are not affected. Which models, and what it rules out →
MiniMax (海螺) · Video Generation

MiniMax Hailuo H3 Max — the top-tier quality variant of H3 for text-to-video. Maximum fidelity cinematic output via the asynchronous task API.

📊 Specifications

Mode
Async task
Input
Text
Output
Video (mp4 URL)
Capabilities
T2V
Resolution
768P / 1080P
Status
✅ Available

💰 Pricing

NovAIOpenRouter
Token billing
Billed on actual upstream tokens (tokenhub_usage.total_tokens)
$1.54 / 1M tokensN/AExclusive
Reference · per second
50,000 tokens/s at 768P / 1080P
~$0.077/sN/A
Reference · 5s clip
Typical 5-second generation
~$0.385N/A
Billed per token on the real upstream count. H3 Max consumes ~50,000 tokens per output second, so a 5s 768P clip is ~250,000 tokens ≈ $0.385. Pre-deducted estimate is reconciled to the actual count on success.

🚀 API Usage

1. Submit — Text-to-Video

curl -X POST https://api.aiapi-pro.com/v1/video/generations \
  -H "Authorization: Bearer $NOVAI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "minimax-video-h3-max",
    "prompt": "A red sports car driving along a coastal road at sunset, cinematic",
    "resolution": "720p",
    "duration": 5,
    "ratio": "16:9"
  }'
# -> { "id": "", "status": "queued" }

2. Poll Task Status

curl "https://api.aiapi-pro.com/v1/video/generations/{task_id}?model=minimax-video-h3-max"   -H "Authorization: Bearer $NOVAI_API_KEY"
# -> { "status": "processing" } ... then when done:
# -> { "status": "succeeded", "video_url": "https://.../out.mp4",
#      "tokenhub_usage": { "total_tokens": 50,000*duration } }
Async flow: POST /v1/video/generations returns {id, status:"queued"}. Poll GET /v1/video/generations/{id} until status is succeeded (then video_url holds the mp4) or failed (auto-refunded). An estimate is pre-deducted at submit and reconciled to the real token count on success.
🚀 Get Free $2 Credit← Compare All Models