Query Kling Omni Video task details by task_id via CometAPI Omni Query API (GET /kling/v1/videos/omni-video/) for real-time status and results.
curl --request GET \
--url https://api.cometapi.com/kling/v1/videos/omni-video/{task_id} \
--header 'Authorization: Bearer <token>'{
"code": 0,
"message": "success",
"request_id": "878106484537192522",
"data": {
"task_id": "878106484537192522",
"task_info": {},
"created_at": 1777385419126,
"updated_at": 1777385430317,
"task_result": {},
"task_status": "processing"
}
}Use this endpoint after you create a Kling Omni task. It returns the task state and final video URLs when the task succeeds.Documentation Index
Fetch the complete documentation index at: https://apidoc.cometapi.com/llms.txt
Use this file to discover all available pages before exploring further.
code, message, and request_id for the query acknowledgementdata.task_status for the task state, such as submitted, processing, succeed, or faileddata.task_result.videos[0].url for the finished MP4 URLCreate the task first
task_id.Bearer token authentication. Use your CometAPI key.
Task id returned by the Omni Video endpoint.
curl --request GET \
--url https://api.cometapi.com/kling/v1/videos/omni-video/{task_id} \
--header 'Authorization: Bearer <token>'{
"code": 0,
"message": "success",
"request_id": "878106484537192522",
"data": {
"task_id": "878106484537192522",
"task_info": {},
"created_at": 1777385419126,
"updated_at": 1777385430317,
"task_result": {},
"task_status": "processing"
}
}