---
title: "Get a Kling Omni image task"
method: GET
path: "/kling/v1/images/omni-image/{task_id}"
---

# Get a Kling Omni image task

`GET /kling/v1/images/omni-image/{task_id}`

Get the status and result of a Kling Omni Image task by `task_id`. Use the `task_id` returned by `POST /kling/v1/images/omni-image`.

## Path parameters

- `task_id` string, required

## Response `200`

Task status or result.

- object
  - `code` integer, required — Response code. `0` means the task was found and the status payload was returned.
  - `message` string, required — Response message.
  - `request_id` string — Request identifier returned by CometAPI when present.
  - `data` object, required
    - `task_id` string, required — System-generated Kling task ID.
    - `task_status` 'submitted' | 'processing' | 'succeed' | 'failed', required — Current task state.
    - `task_status_msg` string, nullable — Status detail or failure reason when returned.
    - `task_info` object — Task metadata, including `external_task_id` when you provided one during task creation.
      - `external_task_id` string, nullable — User-defined task ID from the create request, when provided.
    - `task_result` object, nullable — Generated output metadata. Present when the task succeeds.
      - `images` object[] — Generated image results.
        - `index` integer — Result image index.
        - `url` string — Generated image URL.
        - `watermark_url` string — Watermarked image URL when watermark output is requested.
    - `created_at` integer, required — Task creation timestamp in milliseconds.
    - `updated_at` integer, required — Task update timestamp in milliseconds.
    - `final_unit_deduction` string — Final unit deduction after a successful task, when returned.

## Other responses

- `400` — Task not found for the current account or invalid request.

---

[API](https://skmtc.net/cometapi/apis/create-api-key.md) · [All operations](https://skmtc.net/cometapi/apis/create-api-key/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/cometapi/create-api-key/versions/0863102dbf34/schema)
