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

Models

ModelSpeedQualityPrice
higgsfield-ai/lite6x SlowerBasic$0.15
higgsfield-ai/turbo1.5x FasterMedium$0.21
higgsfield-ai/standardNormalBest$0.30

Parameters

ParameterTypeRequiredDescription
promptstringYesText description
start_image_urlstringYesStarting frame image URL
motion_idstringYesMotion preset ID (UUID)
end_image_urlstringNoEnding frame image URL
enhance_promptbooleanNoEnhance prompt with AI
seedintegerNoSeed for reproducibility

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

Pricing

ModelPrice
Lite$0.15
Turbo$0.21
Standard$0.30