Skip to Content
Video ModelsHailuo 2.3

Hailuo 2.3

Overview

Hailuo 2.3 is MiniMax’s high-fidelity AI video generation model designed to create realistic motion, expressive characters, and cinematic visuals. It supports both text-to-video and image-to-video, handling complex movements, lighting changes, and detailed facial expressions with stability and consistency.

Test API KEY: key_00000000000000000000000000000000

Endpoints

1. Create Task

Request

POST https://api.pixwith.ai/api/task/create

Headers

HeaderValueRequired
Content-Typeapplication/jsonYes
Api-Key{API_KEY}Yes

Request Parameters

ParameterTypeRequiredDescription
promptstringYesThe input prompt (e.g., “A cinematic drone shot of snowy mountains at sunrise”)
image_urlsarrayYesProvide exactly 1 image URL.
model_idstringYes3-17 (Hailuo 2.3 Standard), 3-18 (Hailuo 2.3 Pro)
optionsobjectYesConfiguration options for the task
options.prompt_optimizationbooleanYesAuto-translate prompt to English for improved results.
options.resolutionstringYesOnly '768p' is supported.
options.durationintYesValid values: 6 or 10 seconds.

Example Request – Standard (Single Image to Video)

{ "prompt": "Transform this still into a sweeping establishing shot", "image_urls": [ "https://cdn.pixwith.ai/images/example_start.jpeg" ], "model_id": "3-17", "options": { "prompt_optimization": true, "resolution": "768p", "duration": 10 } }

Response Parameters

ParameterTypeDescription
codeint1 = success, 0 = error
messagestringSuccess or error message
dataobjectResponse payload
data.task_idstringUnique task identifier
data.estimated_timeintEstimated processing time in seconds (≈180s for 6s clips; 10s clips require ~20% more time).

Response

{ "code": 1, "message": "success", "data": { "task_id": "d425ab4dc256f0ebaa84862b9cea8a3d", "estimated_time": 180 } }
Last updated on