# MiniMax Hailuo-03 (H3) Image to Video > MiniMax Hailuo-03 (H3) image-to-video via Fal.AI. 2K video generation from a first-frame image, 5-15 second duration, native audio, with optional first-to-last keyframe control via end_image_url. - **Provider**: fal - **Model ID**: minimax/h3/image-to-video - **Category**: video_generation - **Credits**: 3020 per request - **Pricing Type**: input_based ## API Endpoint Base URL: https://api.core.today/v1 ### Create Prediction POST /predictions ### Get Status GET /predictions/{job_id} ### Cancel DELETE /predictions/{job_id} ## Authentication Header: `X-API-Key: YOUR_API_KEY` ## Input Parameters - `duration` (integer, optional): The duration of the video in seconds. (Default: `5`; Range: min: 5, max: 15) - `prompt` (string, **required**): Text prompt for video generation - `resolution` (string, optional): The resolution of the generated video. (Default: `2K`; Options: `768P`, `2K`) - `end_image_url` (string, optional): Optional URL of the image to use as the last frame, for first-to-last keyframe generation. - `image_url` (string, **required**): URL of the image to use as the first frame. The output aspect ratio follows this image. ## Example Request ```json { "model": "minimax/h3/image-to-video", "input": { "duration": 5, "prompt": "The camera slowly pulls back from the scene, revealing the full landscape as clouds drift overhead and light shifts across the terrain.", "resolution": "2K", "image_url": "https://storage.googleapis.com/falserverless/example_inputs/hailuo23/pro_i2v_in.jpg" } } ``` ## Response Format ```json { "job_id": "abc123", "status": "pending", "provider": "replicate", "model": "black-forest-labs/flux-schnell", "created_at": "2026-01-01T00:00:00Z", "result": null, "error": null } ``` Status values: `pending`, `processing`, `completed`, `failed`, `cancelled` ## Usage Flow 1. POST /predictions with model and input → receive job_id 2. Poll GET /predictions/{job_id} until status is `completed` or `failed` 3. Result contains output URL(s) or data ## Output Type json ## Tags video-generation, image-to-video ## Documentation https://fal.ai/models/minimax/h3/image-to-video