/install acedatacloud-hailuo-video
Hailuo Video Generation
Generate AI videos through AceDataCloud's Hailuo (MiniMax) API.
Authentication
export ACEDATACLOUD_API_TOKEN="your-token-here"
Quick Start
curl -X POST https://api.acedata.cloud/hailuo/videos \
-H "Authorization: Bearer $ACEDATACLOUD_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"action": "generate", "prompt": "a dolphin jumping through ocean waves at golden hour", "model": "minimax-t2v"}'
Models
| Model | Type | Best For |
|---|---|---|
minimax-t2v |
Text-to-Video | Creating video from text description |
minimax-i2v |
Image-to-Video | Animating a still image |
minimax-i2v-director |
Image-to-Video (Director) | Precise control over animation from image |
Workflows
1. Text-to-Video
POST /hailuo/videos
{
"action": "generate",
"prompt": "a time-lapse of flowers blooming in a meadow",
"model": "minimax-t2v"
}
2. Image-to-Video
Animate a still image into a video clip.
POST /hailuo/videos
{
"action": "generate",
"prompt": "gentle wind blows through the scene",
"model": "minimax-i2v",
"first_image_url": "https://example.com/landscape.jpg"
}
3. Image-to-Video (Director Mode)
More precise control over the animation.
POST /hailuo/videos
{
"action": "generate",
"prompt": "camera slowly zooms in while leaves fall gently",
"model": "minimax-i2v-director",
"first_image_url": "https://example.com/scene.jpg"
}
Parameters
| Parameter | Required | Values | Description |
|---|---|---|---|
action |
Yes | "generate" |
Action type |
prompt |
Yes | string | Video description |
model |
Yes | "minimax-t2v", "minimax-i2v", "minimax-i2v-director" |
Model |
first_image_url |
For i2v | string | Source image URL (required for image-to-video) |
mirror |
No | boolean | Mirror the output |
callback_url |
No | string | Async callback URL |
Task Polling
POST /hailuo/tasks
{"task_id": "your-task-id"}
States: processing → succeed or failed.
Gotchas
first_image_urlis required forminimax-i2vandminimax-i2v-directormodels- Director mode (
minimax-i2v-director) provides finer camera/motion control than standard i2v - The
actionfield currently only supports"generate"— no extend or edit - Flat pricing per generation regardless of model
- Use
mirror: trueto horizontally flip the output if needed
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install acedatacloud-hailuo-video - After installation, invoke the skill by name or use
/acedatacloud-hailuo-video - Provide required inputs per the skill's parameter spec and get structured output
What is Hailuo Video?
Generate AI videos with Hailuo (MiniMax) via AceDataCloud API. Use when creating videos from text descriptions or animating images into video. Supports text-... It is an AI Agent Skill for Claude Code / OpenClaw, with 121 downloads so far.
How do I install Hailuo Video?
Run "/install acedatacloud-hailuo-video" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Hailuo Video free?
Yes, Hailuo Video is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Hailuo Video support?
Hailuo Video is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Hailuo Video?
It is built and maintained by Germey (@germey); the current version is v1.0.0.