Skip to main content
POST
https://api.modelhunter.ai
/
api
/
v1
/
seedance
/
image-to-video
Image to Video
curl --request POST \
  --url https://api.modelhunter.ai/api/v1/seedance/image-to-video \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "<string>",
  "input": {
    "image": "<string>",
    "last_image": "<string>",
    "reference_images": [
      "<string>"
    ],
    "prompt": "<string>",
    "duration": 123,
    "resolution": "<string>",
    "ratio": "<string>",
    "seed": 123,
    "camera_fixed": true,
    "watermark": true,
    "generate_audio": true,
    "return_last_frame": true
  },
  "webhookUrl": "<string>",
  "metadata": {}
}
'
{
  "success": true,
  "data": {
    "id": "task_abc123",
    "status": "pending",
    "type": "image-to-video",
    "provider": "seedance",
    "model": "seedance-1-0-pro",
    "created_at": "2026-01-15T10:00:00Z",
    "estimated_seconds": 40
  }
}

Body Parameters

model
string
required
Seedance model. Options:
  • seedance-1-5-pro — Latest flagship, audio-visual generation, $0.12/sec
  • seedance-1-0-pro — Multi-shot narrative, cinematic quality, $0.10/sec
  • seedance-1-0-pro-fast — 3x faster (first frame only), $0.04/sec
  • seedance-1-0-lite-i2v — Lightweight, supports reference images, $0.02/sec
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_abc123",
    "status": "pending",
    "type": "image-to-video",
    "provider": "seedance",
    "model": "seedance-1-0-pro",
    "created_at": "2026-01-15T10:00:00Z",
    "estimated_seconds": 40
  }
}