Documentation Index
Fetch the complete documentation index at: https://docs.tryvinci.com/llms.txt
Use this file to discover all available pages before exploring further.
Transform static images into dynamic videos with motion and effects.
POST /api/v1/generate/image-to-video
Authorization: Bearer sk-your-api-key-here
| Parameter | Type | Description | Default |
|---|
| image | file | Input image (JPEG/PNG) | Required |
| prompt | text | Motion or behavioral description | Required |
| duration_seconds | text | Length in seconds (1–10) | 5 |
{
"request_id": "req_abc123...",
"status": "pending",
"estimated_cost_usd": 0.25,
"estimated_duration_seconds": 5
}
Code examples
curl -X POST "https://tryvinci.com/api/v1/generate/image-to-video" \
-H "Authorization: Bearer sk-your-api-key-here" \
-F "image=@portrait.jpg" \
-F "prompt=The person starts smiling and waves at the camera" \
-F "duration_seconds=6"
Next
After submitting the job, use Status Checking to poll progress and retrieve the final video.