Skip to content
Docs menu

Video models

Hailuo 2.3

On this page

Hailuo 2.3 — high-quality AI video generation.

modelIdhailuo-2-3-image-to-video-standard
Modalityvideo
PricingSee this model on the Pricing page for the current per-call price (with your markup).

Operations

OperationEndpointDescription
Text to videoPOST /api/v1/generateBase generation from a text prompt.
Image to videoPOST /api/v1/generateCondition on a reference image — upload it via /api/v1/files/upload and pass the URL.
Poll taskGET /api/v1/task/{id}?model=hailuo-2-3-image-to-video-standardRetrieve state and result URLs.

Input parameters

FieldTypeRequiredValues / example
prompttextarearequiredThe text prompt describing the desired video motion
image_urlimagerequiredDrag and drop or click to upload your image
durationselectoptional6, 10
resolutionselectoptional768P, 1080P
nsfw_checkerselectoptionalfalse, 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"}}'