Skip to main content
POST
/
v3
/
async
/
minimax-video-01
Minimax Video-01
curl --request POST \
  --url https://api.myrouter.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, 720p resolution, 25 fps videos. It supports two modes: text-to-video and image-to-video.
This is an async API that only returns the task_id of the async task. Use the task_id to call the Get Async Task Result API to retrieve the generated result.

Request Headers

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

Request Body

prompt
string
required
The prompt text that guides the desired generation.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: true.

Response

task_id
string
required
The task_id of the async task. Use the task_id to call the Get Async Task Result API to retrieve the generated result.