Query Video Generation Status
Run in Apifox
Query the video generation status and result of the kling-v2-5-turbo model by video task ID. It is recommended to poll periodically until the status becomes completed or failed.
Request Add parameter in header Authorization
Example: Authorization: ********************
or
Request Code Samples
curl --location 'https://api-xmodel.nexconn.ai/v1/videos/qvideo-user123-1766391125174150336' \
--header 'Authorization: <api-key>' Responses Successfully retrieved video task status
{
"id" : "string" ,
"object" : "video" ,
"model" : "string" ,
"mode" : "string" ,
"status" : "initializing" ,
"created_at" : 0 ,
"updated_at" : 0 ,
"completed_at" : 0 ,
"seconds" : "string" ,
"size" : "string" ,
"task_result" : {
"videos" : [
{
"id" : "string" ,
"url" : "string" ,
"duration" : "string"
}
]
} ,
"error" : {
"code" : "string" ,
"message" : "string"
}
}
Modified at 2026-04-24 10:39:56