Kling
Get a Kling Omni image task
Use CometAPI GET /kling/v1/images/omni-image/ to poll Kling Omni Image task status and retrieve generated image URLs.
GET
cURL
Use this endpoint after you create a Kling Omni image task. Pass the
Generated asset URLs can expire or be cleared by the provider service. Store the finished images in your own storage layer when your workflow needs long retention.
data.task_id returned by the create request and poll until data.task_status is succeed or failed.
The CometAPI public query route is
GET /kling/v1/images/omni-image/{task_id}. Do not use GET /v1/images/omni-image; that route is not a CometAPI public query endpoint for Kling Omni Image tasks.Polling behavior
- Use the same CometAPI account that created the task
- Poll every 20-30 seconds until
task_statusissucceedorfailed - Read generated image URLs from
data.task_result.imageswhen the task succeeds - Store finished images in your own storage if you need durable access
task_not_exist.
Result fields
Successful query responses return generated images underdata.task_result.images. Each item can include:
| Field | Description |
|---|---|
index | Position of the generated image in the task result. |
url | Generated image URL. |
watermark_url | Watermarked image URL when watermark output is requested. |
Authorizations
Bearer token authentication. Use your CometAPI API key.
Path Parameters
Task ID returned by POST /kling/v1/images/omni-image.