Hailuo 02 T2V-Pro is a text-to-video model fine-tuned for ultra-clear 1080P video and responsive handling of physics-driven scenes. Ready-to-use REST API, no coldstarts, best performance, affordable pricing.
ว่าง
$0.48ต่อครั้ง·~20 / $10
A majestic dragon with shimmering emerald scales soars through a cloud-filled sky at dusk, its powerful wings beating rhythmically. The camera follows closely behind, then swoops around to reveal a sweeping panoramic view of a fantasy kingdom below, with towering castles and winding rivers, all bathed in the warm glow of the setting sun. Cinematic, high fantasy, volumetric lighting.
The girl in the image performs a traditional martial arts staff routine, spinning and striking with precision, desert setting, camera sweeps side to side
The martial artist in the image opens a stage show with a spinning jump kick, slow motion on impact, audience gasps, camera tilts up from the ground
On a sunny afternoon, a father is teaching his little daughter how to knead dough in the kitchen, with flour scattered everywhere. They laugh happily as sunlight streams through the window, illuminating the dust motes dancing in the air. Handheld camera style, warm natural light, capturing an intimate family moment.
An anime-style video of a pink-haired high school girl walking slowly under cherry blossom trees. The petals fall gently around her as the camera follows her from the side with a soft dolly shot. Her expression is peaceful, her skirt and hair moving naturally in the spring breeze. The background is softly blurred, with warm pastel lighting.
minimax/hailuo-02/t2v-pro turns plain text into cinematic 1080p video with strong prompt adherence, realistic physics, and smooth camera motion. It’s built for creators who want film-like shots without hand-animating or storyboarding.
| Name | Description |
|---|---|
| prompt* | Describe scene, subjects, lighting, motion, and camera (e.g., “dolly-in through rainy neon alley, steam rising, reflections on wet pavement, moody synth score vibe”). |
| enable_prompt_expansion | When on, the model refines the prompt for quality and runs a safety check. |
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/minimax/hailuo-02/t2v-pro with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Hailuo 02 T2v Pro below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/minimax/hailuo-02/t2v-pro" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"enable_prompt_expansion": true
}'
# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
-H "Authorization: Bearer $WAVESPEED_API_KEY"
# When status is "completed", read the output from data.outputs[0].// npm install wavespeed
const WaveSpeed = require('wavespeed');
const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env
const result = await client.run("minimax/hailuo-02/t2v-pro", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"enable_prompt_expansion": true
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"minimax/hailuo-02/t2v-pro",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"enable_prompt_expansion": true
}
)
print(output["outputs"][0]) # → URL of the generated outputHailuo 02 T2v Pro is a MiniMax model for video generation, exposed as a REST API on WaveSpeedAI. Hailuo 02 T2V-Pro is a text-to-video model fine-tuned for ultra-clear 1080P video and responsive handling of physics-driven scenes. Ready-to-use REST API, no coldstarts, best performance, affordable pricing. You can call it programmatically or try it from the playground above.
POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/minimax/minimax-hailuo-02-t2v-pro.
Hailuo 02 T2v Pro starts at $0.48 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.
Key inputs: `prompt`, `enable_prompt_expansion`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/minimax/minimax-hailuo-02-t2v-pro.
Average end-to-end generation time on WaveSpeedAI is around 223 seconds per request — measured across recent runs. Queue time scales with global demand; live status is visible in the prediction record.
Commercial usage rights depend on the model's license, set by its provider (MiniMax). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.