Generate high-quality AI videos from images using Higgsfield’s Video models with motion templates.

Models

ModelSpeedQuality
higgsfield-ai/lite6x SlowerBasic
higgsfield-ai/turbo1.5x FasterMedium
higgsfield-ai/standardNormalBest

Parameters

ParameterTypeRequiredDescription
promptstringYesText description of the desired video motion/action
start_image_urlstringYesStarting frame image URL
end_image_urlstringNoEnding frame image URL (for guided transitions)
enhance_promptbooleanNoLet AI enhance your prompt for better results. Default: false
seedintegerNo0-999999 for reproducibility
motion_idstringNoMotion preset ID (UUID)

Example Request

curl -X POST https://api.unifically.com/v1/tasks \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "higgsfield-ai/turbo",
    "input": {
      "prompt": "A beautiful sunset animation",
      "start_image_url": "https://example.com/start.jpg",
      "motion_id": "d2389a9a-91c2-4276-bc9c-c9e35e8fb85a"
    }
  }'

With End Image

curl -X POST https://api.unifically.com/v1/tasks \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "higgsfield-ai/standard",
    "input": {
      "prompt": "Smooth transition between scenes",
      "start_image_url": "https://example.com/start.jpg",
      "end_image_url": "https://example.com/end.jpg",
      "motion_id": "d2389a9a-91c2-4276-bc9c-c9e35e8fb85a",
      "enhance_prompt": true
    }
  }'

Response

{
  "code": 200,
  "success": true,
  "data": {
    "task_id": "abc123def456",
    "status": "pending"
  }
}

Resources

Get available motion presets from the Resources API:
GET /v1/resources/higgsfield-ai/motions