---
title: "Get a generative job"
method: GET
path: "/api/generative-jobs/{jobId}"
tags: ["generative-jobs"]
---

# Get a generative job

`GET /api/generative-jobs/{jobId}`

Experimental. Returns status, progress, and result for a job created via `POST /api/generative-jobs`. For `thumbnail` jobs, the `result.generatedThumbnailUris` array contains the CDN URLs of the produced thumbnails when `status` is `CONCLUDED`.

## Path parameters

- `jobId` string, required

## Response `200`

- GenerativeJobStatusResponse
  - `status` 'QUEUED' | 'PROCESSING' | 'CONCLUDED' | 'FAILED' | 'UNKNOWN', required — The job status.
  - `result` GenerativeJobResult — Result payload. For `thumbnail` jobs, includes `generatedThumbnailUris`.
    - `generatedThumbnailUris` string[] — CDN URLs of the produced thumbnails. Typically 4 images per successful thumbnail job.
  - `progress` GenerativeJobProgress — Progress snapshot for an in-flight or completed generative job.
    - `status` 'QUEUED' | 'PROCESSING' | 'CONCLUDED' | 'FAILED' | 'UNKNOWN'
    - `percentage` number — Coarse progress between 0 and 1.
  - `error` GenerativeJobError — User-facing error info for a failed generative job.
    - `type` string — Error type identifier.
    - `message` string — Human-readable error message.

---

[API](https://skmtc.dev/opus/apis/clip-api.md) · [All operations](https://skmtc.dev/opus/apis/clip-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/opus/clip-api/revisions/7fa7ca3147b7/schema)
