Skip to content
Docs menu

Video models

OmniHuman 1.5

On this page

OmniHuman 1.5 — high-quality AI video generation.

modelIdomnihuman-1-5
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=omnihuman-1-5Retrieve state and result URLs.

Input parameters

FieldTypeRequiredValues / example
image_urlimagerequiredDrag and drop or click to upload your image
mask_urltextoptionalJSON array, e.g. [ … ]
audio_urlimagerequiredDrag and drop or click to upload your image
prompttextareaoptionalEnter your prompt here...
output_resolutionselectoptional720, 1080
pe_fast_modeselectoptionalfalse, true
seednumberoptionalEnter number...

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":"omnihuman-1-5","input":{"mask_url":"…","prompt":"Make the person in the photo speak the audio naturally with warm, friendly gestures.","output_resolution":"1080","pe_fast_mode":"false","seed":-1}}'