Minimax Video-01 (also known as Hailuo) is an AI video generation model that creates 6-second videos at 720p resolution and 25fps. It supports both text-to-video and image-to-video generation.
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.
Here is an example of how to use the Minimax Video-01 API.
Generate a task_id by sending a POST request to the Minimax Video-01 API.
Request:
Copy
Ask AI
curl --location 'https://api.novita.ai/v3/async/minimax-video-01' \--header 'Authorization: Bearer {{API Key}}' \--header 'Content-Type: application/json' \--data '{ "prompt": "A cute panda is walking in the grassland slowly", "image_url": "https://pub-f964a1c641c04024bce400ad128c8cd6.r2.dev/minimax-video-01-image.jpg", "enable_prompt_expansion": True,}'
Response:
Copy
Ask AI
{ "task_id": "{Returned Task ID}"}
Use task_id to get output videos.
HTTP status codes in the 2xx range indicate that the request has been successfully accepted, while status codes in the 5xx range indicate internal server errors.You can get videos url in videos of response.Request: