Skip to Content
Video ModelsHailuo 2.3 Quality

Hailuo 2.3 Quality

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 fashion runway scene with dynamic lighting and expressive poses”)
image_urlsarrayYesProvide exactly 1 image URL.
model_idstringYes3-19 (Hailuo 2.3 Quality Standard), 3-20 (Hailuo 2.3 Quality Pro)
optionsobjectYesConfiguration options for the task
options.prompt_optimizationbooleanYesAuto-translate prompt to English for improved results.
options.resolutionstringYesOnly '1080p' is supported.
options.durationintYesValid values: 6 seconds.

Example Request – Quality Pro (Text-to-Video)

{ "prompt": "A fashion runway scene with dynamic lighting and expressive poses", "model_id": "3-20", "options": { "prompt_optimization": true, "resolution": "1080p", "duration": 6 } }

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).

Response

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