Generate high-quality AI videos using Minimax Hailuo models.

Models

ModelDescription
hailuo/minimaxStandard Hailuo
hailuo/minimax-fastFast processing
hailuo/minimax-2.3Latest version
hailuo/minimax-2.3-fastLatest version, fast

Parameters

ParameterTypeRequiredDescription
promptstringYesText description
start_image_urlstringYesStarting frame image URL
end_image_urlstringNoEnding frame (minimax/minimax-fast only)
motion_idstringNoMotion preset ID
durationintegerNo6 or 10 seconds
resolutionstringNo512, 768, 1080
enhance_promptbooleanNoEnhance prompt with AI
seedintegerNoSeed for reproducibility

Resolution Limits

Model6s Duration10s Duration
minimax / minimax-fast512p, 768p, 1080p512p, 768p only
minimax-2.3 / minimax-2.3-fast768p, 1080p768p only

Example Request

curl -X POST https://api.unifically.com/v1/tasks \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "hailuo/minimax",
    "input": {
      "prompt": "A beautiful sunset animation",
      "start_image_url": "https://example.com/sunset.jpg",
      "duration": 6,
      "resolution": "1080"
    }
  }'

With End Image

curl -X POST https://api.unifically.com/v1/tasks \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "hailuo/minimax",
    "input": {
      "prompt": "Smooth transition between scenes",
      "start_image_url": "https://example.com/start.jpg",
      "end_image_url": "https://example.com/end.jpg",
      "duration": 6
    }
  }'

Response

{
  "code": 200,
  "success": true,
  "data": {
    "task_id": "abc123def456",
    "status": "pending"
  }
}

Pricing

ModelPrice
minimax$0.17
minimax-fast$0.17
minimax-2.3$0.17
minimax-2.3-fast$0.11