Skip to main content
POST
/
v3
/
async
/
minimax-video-01
Minimax Video-01
curl --request POST \
  --url https://api.highwayapi.ai/v3/async/minimax-video-01 \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '
{
  "prompt": "<string>",
  "image_url": "<string>",
  "enable_prompt_expansion": true
}
'
{
  "task_id": "<string>"
}
Minimax Video-01 (also known as Hailuo) is an AI video generation model that can generate 6-second videos at 720p resolution and 25 frames per second. It supports two modes: text-to-video and image-to-video.
This is an asynchronous API that only returns the asynchronous task’s task_id. You should use this task_id to request the Get Task Result API to retrieve the video generation result.

Request Headers

Content-Type
string
required
Enum value: application/json
Authorization
string
required
Bearer authentication format: Bearer {{API key}}.

Request Body

prompt
string
required
The prompt text used to guide the desired generation.Value range: 1 <= x <= 2000.
image_url
string
The URL of the first-frame image used for video generation.
enable_prompt_expansion
boolean
Whether to enable prompt optimization.Default value: true.

Response Information

task_id
string
required
The task_id of the asynchronous task. You should use this task_id to request the Get Task Result API to obtain the generation result.