Skip to content
Home

Hailuo 1.0 Image to Video

minimax-i2v-01

Hailuo 1.0 Image to Video converts static images into smooth videos with automatic camera motion and environmental effects.

POST /v1/queue/minimax-i2v-01 # Create task
GET /v1/queue/minimax-i2v-01/requests/{request_id}/status # Check status
GET /v1/queue/minimax-i2v-01/requests/{request_id}/response # Get result
PUT /v1/queue/minimax-i2v-01/requests/{request_id}/cancel # Cancel task
Окно терминала
curl --location "https://odirouter.ai/model/v1/queue/minimax-i2v-01" \
--header "Authorization: Bearer YOUR_API_KEY" \
--header "Content-Type: application/json" \
--data '{
"first_frame_image": "https://example.com/reference-image.webp",
"prompt": "A red apple slowly rotating on a white table, clean studio lighting, static camera.",
"duration": 6,
"resolution": "720P"
}'
first_frame_image string required

Image used as the first frame of the video. Supports public URLs or Base64 Data URLs such as data:image/jpeg;base64,....

Image formats: JPG, JPEG, PNG, WebP

Image size: less than 20MB

Image dimensions: short side greater than 300px, aspect ratio between 2:5 and 5:2

prompt string

Text description for the video. Maximum 2000 characters.

duration int

Video duration in seconds. Fixed at 6 seconds.

Options: 6

Default: 6

resolution string

Video resolution. Fixed at 720P.

Options: 720P

Default: 720P

prompt_optimizer bool

Whether to automatically optimize the prompt. Set to false for more precise control.

Default: true

aigc_watermark bool

Whether to add a watermark to the generated video.

Default: false

{
"request_id": "mmsu_01hxyz...",
"response_url": "https://odirouter.ai/model/v1/queue/minimax-i2v-01/requests/mmsu_01hxyz.../response",
"status_url": "https://odirouter.ai/model/v1/queue/minimax-i2v-01/requests/mmsu_01hxyz.../status",
"cancel_url": "https://odirouter.ai/model/v1/queue/minimax-i2v-01/requests/mmsu_01hxyz.../cancel",
"queue_position": 0
}
FieldTypeDescription
request_idstringTask ID used for all follow-up operations.
response_urlstringURL to fetch the final result.
status_urlstringURL to query task status.
cancel_urlstringURL to cancel the task.
queue_positionintCurrent queue position.