Video models
Hailuo 2.3
On this page
Hailuo 2.3 — high-quality AI video generation.
| modelId | hailuo-2-3-image-to-video-standard |
| Modality | video |
| Pricing | See this model on the Pricing page for the current per-call price (with your markup). |
Operations
| Operation | Endpoint | Description |
|---|---|---|
| Text to video | POST /api/v1/generate | Base generation from a text prompt. |
| Image to video | POST /api/v1/generate | Condition on a reference image — upload it via /api/v1/files/upload and pass the URL. |
| Poll task | GET /api/v1/task/{id}?model=hailuo-2-3-image-to-video-standard | Retrieve state and result URLs. |
Input parameters
| Field | Type | Required | Values / example |
|---|---|---|---|
| prompt | textarea | required | The text prompt describing the desired video motion |
| image_url | image | required | Drag and drop or click to upload your image |
| duration | select | optional | 6, 10 |
| resolution | select | optional | 768P, 1080P |
| nsfw_checker | select | optional | false, true |
Example request
bash
curl -X POST https://you.bot/api/v1/generate \
-H "Authorization: Bearer $YOUBOT_API_KEY" \
-H "Content-Type: application/json" \
-d '{"modelId":"hailuo-2-3-image-to-video-standard","input":{"prompt":"Animate with a slow push-in: the sloth blinks languidly and shifts one arm along the branch, broad leaves swaying in a humid breeze as dappled jungle light drifts across its fur.","duration":"6","resolution":"768P","nsfw_checker":"true"}}'