Skip to main content
POST
/
v3
/
async
/
minimax-hailuo-2.3-t2v
Minimax Hailuo 2.3 Text to Video
curl --request POST \
  --url https://api.novita.ai/v3/async/minimax-hailuo-2.3-t2v \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '{
  "prompt": "<string>",
  "duration": 123,
  "resolution": "<string>",
  "enable_prompt_expansion": true
}'
{
  "task_id": "<string>"
}
Minimax Hailuo 2.3 is a new video generation model, breakthroughs in body movement, facial expressions, physical realism, and prompt adherence.
This is an asynchronous API; only the task_id will be returned. You should use the task_id to request the Task Result API to retrieve the video generation results.

Request Headers

Content-Type
string
required
Supports: application/json
Authorization
string
required
Bearer authentication format, for example: Bearer {{API Key}}.

Request Body

prompt
string
required
Prompt text required to guide the generation.Range: 1 <= x <= 2000.Supported 15 camera commands:
  • Truck: [Truck left], [Truck right]
  • Pan: [Pan left], [Pan right]
  • Push: [Push in], [Pull out]
  • Pedestal: [Pedestal up], [Pedestal down]
  • Tilt: [Tilt up], [Tilt down]
  • Zoom: [Zoom in], [Zoom out]
  • Shake: [Shake]
  • Follow: [Tracking shot]
  • Static: [Static shot]
Usage rules:
  • Combined movements: Multiple commands inside one [] take effect simultaneously (e.g., [Pan left,Pedestal up]). Recommended max: 3.
  • Sequential movements: Commands appear in order, e.g., ”…[Push in], then…[Push out]”.
  • Natural language: Free-form descriptions also work, but explicit commands yield more accurate results.
duration
integer
The length of the generated video in seconds. Default: 6
Optional values: 6, 10
resolution
string
The resolution of the generated video. Default: 768P
  • For 6-second videos: supports 768P, 1080P
  • For 10-second videos: supports 768P only
enable_prompt_expansion
boolean
Whether to enable prompt optimization.Default: true.

Response

task_id
string
required
Use the task_id to request the Task Result API to retrieve the generated outputs.