MI
Unknown: MiniMax-Hailuo-2.3
MiniMax-Hailuo-2.3
MiniMax Hailuo 2.3 is MiniMax's video generation model for high-quality text/image-to-video creation, suited to cinematic storytelling, ads, and creative content.
Provider: Unknown|Input types
Output types|Publish Time: None
Group price
Price information for different user groups
Auto Group routing → default
| Group | Billing type | Input Price | Output Price |
|---|---|---|---|
| default | Pay as you go | $75.0000 / M tokens | $75.0000 / M tokens |
API call example
Connect quickly using the standard OpenAI-compatible APIPython
1
import openai2
3
client = openai.OpenAI(4
api_key="<YOUR_API_KEY>",5
base_url="http://localhost:3000/v1"6
)7
8
response = client.chat.completions.create(9
model="MiniMax-Hailuo-2.3",10
messages=[11
{"role": "user", "content": "What model are you?"}12
]13
)14
15
print(response.choices[0].message.content)