Skip to main content
POST
/
api
/
v1
/
veo
/
image-to-video
Image to Video
curl --request POST \
  --url https://api.modelhunter.ai/api/v1/veo/image-to-video \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "<string>",
  "input": {
    "prompt": "<string>",
    "image_urls": [
      "<string>"
    ],
    "aspect_ratio": "<string>",
    "seed": 123,
    "enable_translation": true,
    "watermark": "<string>"
  },
  "webhookUrl": "<string>",
  "metadata": {}
}
'
{
  "success": true,
  "data": {
    "id": "task_veo_i2v_456",
    "status": "pending",
    "type": "image-to-video",
    "provider": "veo",
    "model": "veo3_fast",
    "created_at": "2026-03-14T10:00:00Z",
    "estimated_seconds": 90
  }
}

Body Parameters

model
string
required
Veo model to use. In this phase:
  • veo3 — billed at $3.20 per request
  • veo3_fast — billed at $1.20 per request
This endpoint currently bills a fixed default 8s clip.
input
object
required
Input parameters for the generation.
webhookUrl
string
URL to receive a webhook when the task completes.
metadata
object
Custom key-value metadata to attach to the task.
{
  "success": true,
  "data": {
    "id": "task_veo_i2v_456",
    "status": "pending",
    "type": "image-to-video",
    "provider": "veo",
    "model": "veo3_fast",
    "created_at": "2026-03-14T10:00:00Z",
    "estimated_seconds": 90
  }
}