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/uploadAuthorization — This endpoint requires an API key. Pass it in the api-key header on every request. Learn more
Responses
Signed upload URL createdImageToVideoUploadResponse
| Field | Type | Description |
|---|---|---|
task_id | string | |
image_upload_url | string | URL 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"
}