API Reference

Create enhance-video-pro upload URL

Create a signed upload URL for Enhance Video Pro. Upload the source video with HTTP PUT before creating a task.

post/v1/videos/enhance-pro/upload

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

Responses

Signed upload URL createdUploadUrlResponse

FieldTypeDescription
task_idstringTask identifier to pass to the create-task endpoint.
upload_urlstringURL for uploading the input.
curl -X POST "https://api.snapedit.app/v1/videos/enhance-pro/upload" \
  -H "api-key: YOUR_API_KEY"
Response
{
  "task_id": "task_abc123",
  "upload_url": "https://storage.googleapis.com/upload/abc123"
}