API Reference
Create Enhance Video Pro task
Enhance and upscale a video to 2K or 4K. Set is_preview=true to process only the first three seconds.
Model:
enhance-video-proCredit:27/second (2K), 52/second (4K)
post
/v1/videos/enhance-proAuthorization — This endpoint requires an API key. Pass it in the api-key header on every request. Learn more
Parameters
| Name | Type | Status | Description |
|---|---|---|---|
task_id | string | Required | Task ID returned by upload. |
zoom_factor | string | Required | 2K4K (default: 2K) |
is_preview | boolean | Optional | (default: false) |
Responses
Task createdTaskCreatedResponse
| Field | Type | Description |
|---|---|---|
task_id | string | Unique task identifier. Poll the matching task-status endpoint for results. |
status | string | |
created_at | integer | Unix timestamp of task creation |
curl -X POST "https://api.snapedit.app/v1/videos/enhance-pro" \
-H "api-key: YOUR_API_KEY" \
-F "task_id=value" \
-F "zoom_factor=2K" \
-F "is_preview=false"Response
{
"task_id": "task_abc123",
"status": "CREATED",
"created_at": 1745827200
}