API Reference

Create image-to-video upload URL

Create an image upload URL. Upload the file to provided URL with HTTP PUT before creating the task.

post/v1/videos/image-to-video/upload

AuthorizationThis endpoint requires an API key. Pass it in the api-key header on every request. Learn more

Responses

Signed upload URL createdImageToVideoUploadResponse

FieldTypeDescription
task_idstring
image_upload_urlstringURL for the source image.
curl -X POST "https://api.snapedit.app/v1/videos/image-to-video/upload" \
  -H "api-key: YOUR_API_KEY"
Response
{
  "task_id": "task_abc123",
  "image_upload_url": "string"
}