Featured
UpdatedSep 3, 2026
9 min read
UllrAI

fal H3 Max API: Pricing, Speed & Open-Weights Status (2026)

Get fal H3 Max API pricing, model IDs, resolution and speed benchmarks, plus a clear answer on open weights and how it differs from H3 and H3 Max Turbo.

H3 MaxMiniMax H3 Maxfal AIAI Video APIAI Video Model

fal H3 Max is a post-trained MiniMax H3 variant built for faster 480p and 768p audiovisual generation. fal announced it on August 27, 2026, with text-to-video and image-to-video API endpoints, native synchronized audio, 5–15 second durations, and an optional final keyframe. fal reports that a 5-second 768p clip renders in under 3 seconds; that is an inference claim, not a promise of identical end-to-end latency under every queue and network condition.

That speed is useful in an iterative production workflow. Teams can review more camera moves, motion choices, and dialogue takes in the same amount of time. H3 Max still does not replace standard MiniMax H3 in every workflow: it stops at 768p, while standard H3 offers 2K output and video editing. Since the original article was published, fal has also activated an H3 Max reference-to-video endpoint and launched the lower-cost H3 Max Turbo tier.

fal H3 Max Quick Facts

ItemVerified status on September 3, 2026
AnnouncementAugust 27, 2026
DeveloperPost-trained by fal Research from MiniMax H3
fal model IDsminimax/h3-max/text-to-video, image-to-video, and reference-to-video
InputsText; first and optional last frame; or up to 12 mixed image, video, and audio references
Output480p or 768p video at 24 FPS with native synchronized audio
Duration5–15 seconds
Text-to-video ratios21:9, 16:9, 4:3, 1:1, 3:4, and 9:16
Image-to-video ratioFollows the input image
Reported inference timeUnder 3 seconds for a 5-second 768p clip; about 15 seconds for a 15-second clip
Regular API price$0.05/sec at 480p; $0.08/sec at 768p
Promotional price shown by endpoint$0.0125/sec at 480p; $0.02/sec at 768p through September 7
Free trial shown by falFive generations per rolling 24 hours for signed-in users

What Is H3 Max?

H3 Max is fal's hosted, post-trained version of the open-weight MiniMax H3 base model. fal says it introduced additional training data and used its reinforcement-learning framework to improve prompt adherence, audiovisual quality, and aesthetics. The company also co-designed the serving path around its inference engine instead of deploying the model through a generic stack.

MiniMax created the H3 foundation model; fal created and serves the H3 Max variant. fal announced API access, but no downloadable H3 Max weights or separate license. The open-weight status of the MiniMax H3 base therefore does not automatically apply to H3 Max.

What Is the H3 Max News?

fal's August 27 announcement makes three claims worth testing:

  1. Speed: fal reports roughly 2.5 seconds of backend denoising time and under 3 seconds of inference for a 5-second 768p clip.
  2. Preference: fal's internal human evaluation placed H3 Max first for overall preference, prompt understanding, and aesthetics against twelve named video models.
  3. Availability: the model launched on fal's Playground, Agent, and API, with a temporary 50% API discount and a daily free sandbox allowance.

The speed number describes model inference. Real application latency also includes prompt expansion, queue time, uploads, downloads, webhook handling, and retries. fal's quality prompt-expansion mode alone may spend up to about 30 seconds rewriting a prompt, while balanced generally adds about one second.

Does Independent Benchmarking Support the Quality Claim?

Independent preference data supports the claim within a specific test category, but not every production use case. On August 28, the Artificial Analysis image-to-video leaderboard with audio listed MiniMax H3 Max first with an Elo score of 1,202, a ±9 confidence interval, and 5,322 samples. The live table changes as new votes arrive.

Design Arena's image-to-video board also placed H3 Max first in the launch snapshot cited by fal. fal's own benchmark used head-to-head human ratings for overall preference, prompt understanding, and aesthetics, aggregated with Bayesian Elo.

These leaderboards answer “which output did voters prefer for the tested prompts?” They do not establish character consistency across a full episode, editability after approval, queue stability, safety-filter behavior, or cost per accepted shot. A production decision still needs a test set drawn from your own scripts and reference assets.

H3 Max API Inputs and Outputs

fal now exposes three provider-specific model IDs. Reference-to-video was described as forthcoming at launch and is live as of September 3:

WorkflowEndpointImportant controls
Text to videominimax/h3-max/text-to-videoPrompt, duration, resolution, aspect ratio, seed, safety checker, prompt expansion
Image to videominimax/h3-max/image-to-videoPrompt, first frame, optional last frame, duration, resolution, seed, safety checker, prompt expansion
Reference to videominimax/h3-max/reference-to-videoPrompt plus ordered image, video, and audio reference lists, duration, resolution, ratio, seed

All three endpoints return a video URL. Responses can also include the expanded prompt and timings.inference, which records backend denoising time rather than total request time. The image endpoint follows the first image's aspect ratio; the text endpoint lets you select six documented ratios.

The reference endpoint accepts up to 12 files in total. Each reference video or audio clip must be 2–15 seconds, the combined video duration and combined audio duration are each capped at 15 seconds, and audio cannot be the only reference modality. Assets are addressed in the prompt by order, such as Image 1, Video 1, and Audio 1.

fal documents balanced and quality prompt expansion on the current schemas. Start with balanced when turnaround matters. Use quality only when the richer rewrite justifies up to roughly 30 seconds of extra latency, and retain the returned expanded prompt so an approved shot can be audited later.

Minimal JavaScript Request

Keep FAL_KEY on the server and use the current @fal-ai/client package:

import { fal } from "@fal-ai/client";

const result = await fal.subscribe("minimax/h3-max/text-to-video", {
  input: {
    prompt:
      "Five-second medium shot of a cel-shaded detective entering a rainy alley. Slow dolly in. Coat and hair move in the wind. Sound: rain, distant traffic, one measured footstep.",
    duration: 5,
    resolution: "768P",
    aspect_ratio: "16:9",
    prompt_expansion_mode: "balanced",
  },
});

console.log(result.data.video.url);
console.log(result.data.timings?.inference);

For production traffic, fal recommends queue submission and webhooks instead of holding a request open. Store the model ID, request ID, original prompt, expanded prompt, seed, price snapshot, output URL, and measured wall-clock latency with each result.

How Much Does H3 Max Cost?

As checked on September 3, the live text-to-video endpoint lists a promotional price of $0.0125 per output second at 480p and $0.02 per output second at 768p. It says the 75% discount ends September 7, after which the regular rates are $0.05/sec and $0.08/sec respectively. Always recheck the endpoint before budgeting because fal has changed the offer since launch.

Duration480p launch480p regular768p launch768p regular
5 seconds$0.0625$0.25$0.10$0.40
10 seconds$0.125$0.50$0.20$0.80
15 seconds$0.1875$0.75$0.30$1.20

fal's H3 Max landing page still describes a 50% launch discount while the endpoint currently shows 75% through September 7. Because these official pages conflict, treat the endpoint's live price as operational truth at submission time. The landing page also says signed-in users receive five free generations every rolling 24 hours, up to 15 seconds at 768p; trial terms can change without an API version change.

The generated-second price is not the same as production cost. Budget for rejected generations, prompt-expansion time, uploads, storage, review, edits, and final upscaling. Compare models by cost per approved second, not the cheapest first render.

H3 Max vs MiniMax H3

Questionfal H3 MaxStandard MiniMax H3 on fal
Who changed the model?fal post-trained the H3 baseMiniMax released the foundation model
Best documented advantageFaster-than-real-time 5-second 768p generation and stronger prompt adherenceHigher resolution and broader multimodal control
Resolution480p or 768pUp to 2K
Duration5–15 seconds5–15 seconds
InputsText, first/last frames, and ordered image, video, and audio referencesText, first/last frames, images, video, and audio references
Editing/reference endpointsReference-to-video is now live; no H3 Max video-editing endpoint documentedReference-to-video and video-editing workflows documented
AudioNative synchronized audioNative stereo audio
AccessHosted fal endpointsHosted endpoints plus separately released MiniMax H3 base weights

Choose H3 Max for fast draft loops, dialogue or sound-aware previews, multimodal reference control, camera tests, and high-volume 768p generation. Choose standard H3 when 2K delivery or localized video editing is essential. A hybrid workflow can draft on H3 Max and reserve H3 or another high-resolution model for selected final shots. Verify that regenerated shots preserve the approved motion and timing.

How to Test H3 Max for Motion Comics

Do not benchmark with one attractive prompt. Build a short sequence that reflects the failures your audience will notice:

  1. Dialogue close-up: one character speaks a short line with a defined emotion and quiet room tone.
  2. Repeat close-up: the same character returns with unchanged face, costume, palette, and voice direction.
  3. Two-character shot: preserve blocking, eyelines, scale, and speaking order.
  4. Full-body action: include hands touching a prop, a camera move, and a clear start and end pose.
  5. Vertical variant: repeat an approved shot at 9:16 without losing the subject or key action.
  6. First-to-last-frame transition: test whether the path between two approved storyboards remains physically and narratively plausible.

Run each case with fixed evaluation criteria: instruction adherence, identity, motion, composition, lip sync, sound, artifacts, latency, and accepted-shot cost. Repeat enough seeds to expose variance. Leaderboard rank can choose what to test first; only this sequence test can decide whether H3 Max belongs in your episode pipeline.

Where AniKuku Fits

H3 Max solves shot generation. It does not manage the script, break a scene into shots, preserve approved character references, or track which render belongs in an episode. AniKuku's production workspace keeps scripts, shot lists, character and scene assets, storyboards, and output versions together before and after an external model call.

That separation makes model testing safer. Prepare the same shot package once, render selected shots with H3 Max and comparison models, then review outputs against the same brief. If a better model appears, the story structure and approved assets remain usable instead of being trapped in one provider's generation history.

Frequently Asked Questions

Who made H3 Max: MiniMax or fal?

fal created H3 Max by post-training MiniMax's H3 base model and optimizing it with fal's inference stack. MiniMax made the underlying H3 foundation model. Use minimax/h3-max/... when referring to fal's hosted provider IDs.

Is H3 Max open source or open weights?

The underlying MiniMax H3 base has released weights, but fal's H3 Max announcement provides hosted API access and does not announce a downloadable H3 Max checkpoint. Treat H3 Max as a fal-hosted model unless fal publishes separate weights and license terms.

Does H3 Max generate audio?

Yes. fal documents native synchronized audio for H3 Max, including dialogue, music, effects, and ambience described in the prompt. Audio quality and lip sync should still be tested in the language, voice style, and shot length you plan to ship.

Does H3 Max support 2K?

No. H3 Max supports 480p and 768p. fal directs users who need 2K or video editing to standard MiniMax H3.

How fast is H3 Max?

fal reports under 3 seconds of inference for a 5-second 768p clip, with an example response showing about 2.53 seconds of backend denoising. Total user-visible time can be longer because of prompt expansion, queues, transfers, and application processing.

What is the best H3 Max setting to start with?

Start at 768p, 5–10 seconds, with balanced prompt expansion. This matches fal's recommended quality and latency starting point. Then test 480p for cheaper drafts or quality expansion when richer prompt interpretation is worth the extra wait.

What changed after H3 Max launched?

The reference-to-video endpoint is now live, and fal has introduced H3 Max Turbo as a separate text-to-video and image-to-video tier. Turbo costs half as much and has a faster official example, but it does not currently expose H3 Max's multimodal reference endpoint. Read the H3 Max Turbo guide for the verified comparison.

Sources and Verification Date

This article was checked on September 3, 2026. Prices, free allowances, rankings, and available endpoints can change.

Turn the idea into an animated story

Build your script, shot list, characters, storyboards, and animated scenes in one production workspace.