MiniMax Hailuo H3 Max — the top-tier quality variant of H3 for text-to-video. Maximum fidelity cinematic output via the asynchronous task API.
| NovAI | OpenRouter | ||
|---|---|---|---|
| Token billing Billed on actual upstream tokens (tokenhub_usage.total_tokens) | $1.54 / 1M tokens | N/A | Exclusive |
| Reference · per second 50,000 tokens/s at 768P / 1080P | ~$0.077/s | N/A | |
| Reference · 5s clip Typical 5-second generation | ~$0.385 | N/A |
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" } 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 } }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.