cURL
curl --request POST \ --url https://api.unifically.com/higgsfield/generate \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "prompt": "<string>", "start_image_url": "<string>", "model": "<string>", "motion_id": "<string>", "end_image_url": "<string>", "enhance_prompt": true, "seed": 123 } '
{ "code": 200, "data": { "task_id": "cc038613-e320-4b5e-86e9-cc285580a01e", "error": {} } }
Generate videos from images using Higgsfield’s Video models
-H 'Authorization: Bearer YOUR_API_KEY'
curl --request POST \ --url https://api.unifically.com/higgsfield/generate \ --header 'Authorization: Bearer YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{ "prompt": "A beautiful sunset animation", "start_image_url": "https://example.com/start.jpg", "model": "turbo", "motion_id": "d2389a9a-91c2-4276-bc9c-c9e35e8fb85a", "end_image_url": "https://example.com/end.jpg", "enhance_prompt": false, "seed": 123456 }'
"turbo"
"standard"
"lite"
null
false
{ "code": 400, "data": { "message": "{\"error\":\"Required field: prompt\"}", "error": {} } }
{ "code": 400, "data": { "message": "Invalid Motion ID", "error": {} } }
{ "code": 400, "data": { "message": "Unrecognized param frames. Available params are: prompt, start_image_url, end_image_url, enhance_prompt, seed, model, motion_id", "error": {} } }
task_id