video-model.com

Async image-to-video generation API

1. Upload an image

curl -sS \
  -H "Authorization: Bearer YOUR_KEY" \
  -F "file=@/path/to/image.jpg" \
  https://video-model.com/v1/uploads

2. Create a video

curl -sS \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "a serene lake",
    "upload_id": "UPLOAD_ID",
    "duration": 5,
    "width": 1280,
    "height": 720
  }' \
  https://video-model.com/v1/image_to_video

Returns a task ID immediately.

3. Poll for result

curl -sS \
  -H "Authorization: Bearer YOUR_KEY" \
  https://video-model.com/v1/tasks/TASK_ID

When status is SUCCEEDED, output_url has your video.

Want access?

hokinxqdeng@gmail.com