GlobalAiOpc

DigitalHuman - Query Task

Query a digital human video task status and result

GET/kyyReactApiServer/v1/result/{id}

DigitalHuman Query Task

Use the id returned by the create task API to query the digital human video task status and result.
All requests must include a Bearer token in the request header:
cURL
Authorization: Bearer {{key}}

Base URL

https://zcbservice.aizfw.cn/kyyReactApiServer
baseUrl 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

idstringrequired
Digital human video task ID returned by the create task API.

Response Parameters

idstring
Task ID.
objectstring
Object type, fixed as video.
createdinteger
Task creation timestamp.
modelstring
Model name used by the task.
statusstring
Task status: queued, processing, completed, or failed.
video_urlstring
Generated video URL, returned after the task is completed.
md5string
MD5 value of the generated file, returned after the task is completed.
errorstring
Error message, returned when the task fails.

Polling

Query every 5-10 seconds. Stop polling when the status becomes completed or failed.