mingyan
Video Super Resolution - Query Task
Query the status and result URL of a video super-resolution task
Video Super Resolution Query Task
Use the task ID to query the status and result of a video super-resolution task. When the task is completed,
video_url contains the enhanced video URL.Authentication
Authentication
Get KeyAll requests require a Bearer token in the request header:
cURL
Authorization: Bearer {{key}}
Base URL
https://zcbservice.aizfw.cn/kyyReactApiServerbaseUrl is the shared prefix for all public APIs. The api field in the current page frontmatter shows the full endpoint. Use this baseUrl as the common prefix when reading or composing request paths.Path Parameters
idstringrequiredTask ID returned by the create task API.
Use the
id field returned by the create API as this path parameter.Response Parameters
idstringUnique identifier of the video super-resolution task.
objectstringObject type, always
video.createdintegerTask creation timestamp.
statusstringTask status:
queued- Queuedprocessing- Processingcompleted- Completedfailed- Failed
video_urlstringEnhanced video URL, returned when the task is
completed.actualDurationnumberActual result video duration in seconds, returned when the task is
completed.errorstringError message, returned when the task is
failed.Status Flow
queued
The task has been created and added to the queue.
processing
The video is being enhanced.
completed
The task completed successfully and the result is available through
video_url.Polling Recommendations
Polling strategy:
- Recommended polling interval: 5-10 seconds
- Stop polling when
statusbecomescompletedorfailed - Result URLs may be temporary, so save them promptly
Important:
- The
{id}path parameter must use theidreturned by the create API - Processing time depends on the input video duration and server-side processing settings
- Result URLs may expire, so download or save them within the validity period

