API Reference

Create enhance-video task

Create the processing task after uploading the source file.

post/v1/videos/enhance

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

Parameters

NameTypeStatusDescription
task_id
stringRequiredTask ID returned by the upload endpoint.
zoom_factor
stringRequiredOutput size target. HD is max 1920 px; 2K is max 2560 px.
HD2K
(default: HD)

Responses

Task createdTaskCreatedResponse

FieldTypeDescription
task_idstringUnique task identifier. Poll the matching task-status endpoint for results.
statusstring
created_atintegerUnix timestamp of task creation
curl -X POST "https://api.snapedit.app/v1/videos/enhance" \
  -H "api-key: YOUR_API_KEY" \
  -F "task_id=value" \
  -F "zoom_factor=HD"
Response
{
  "task_id": "task_abc123",
  "status": "CREATED",
  "created_at": 1745827200
}

Examples (1 example)

Input

Output