Skip to main content
POST
/
v3
/
async
/
minimax-hailuo-2.3-fast-i2v
Minimax Hailuo 2.3 Fast Image-to-Video
curl --request POST \
  --url https://api.highwayapi.ai/v3/async/minimax-hailuo-2.3-fast-i2v \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '
{
  "prompt": "<string>",
  "image": "<string>",
  "duration": 123,
  "resolution": "<string>",
  "enable_prompt_expansion": true
}
'
{
  "task_id": "<string>"
}
Minimax Hailuo 2.3 Fast significantly improves generation speed while maintaining excellent image quality and expressiveness, offering greater cost-effectiveness.
This is an asynchronous API and will only return 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 generation.Range: 1 <= x <= 2000.
image
string
required
The image used for video generation. Supports public URLs or Base64 encoding (such as data:image/jpeg;base64,...).
duration
integer
The duration of the generated video (in seconds). Default value: 6
Available values: 6, 10
resolution
string
The resolution of the generated video. Default value: 768P
  • 6-second videos support: 768P, 1080P
  • 10-second videos only support: 768P
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 generated result.