Generate Video

Googles Veo 3

To generate a video using the Veo 3 quality model, use the following curl command:

Pricing: $0.80 Veo 3 Quality Model veo3_quality

$0.40 Veo 3 Fast Model veo3_fast

curl --location 'https://api.unifically.com/veo-3/generate' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
  "model": "veo3_fast",
  "prompt": "Prompt here"
}'

Response Example

{
    "success": true,
    "id": "124e9310f254cf20e06299755b1fdfcf"
}
// callback example thats sent to your callback url
{
  "task_id": "a8f82581a64842325f9245cc8df95576",
  "video_url": "https://storagecdn.online/videos/a8f82581a64842325f9245cc8df95576.mp4",
  "status": "completed"
}

Parameters

  • prompt: Describes the video scene you want to generate.

  • seed: Sets the seed for random number generation to ensure reproducibility. Optional.

  • image_url: Sets the start image for video, available for both models, must be url only.

  • callBackUrl: Your callback url, POST configured endpoint that will be posted once generation is completed. (optional)

  • aspect_ratio: 9:16, or default 16:9

Last updated