---
title: "Get a job by ID"
method: GET
path: "/jobs/{id}"
tags: ["General"]
---

# Get a job by ID

`GET /jobs/{id}`

## Path parameters

- `id` string, required — A unique identifier for a job

## Response `200`

The most up-to-date state of the job. You can check when the job is completed by checking the `status` field. For completed loraTraining jobs, the result will include a `style_id` field.

- object
  - `job_id` string, uuid, required
  - `status` 'backlogged' | 'queued' | 'scheduled' | 'processing' | 'sampling' | 'intermediate-complete' | 'completed' | 'failed' | 'cancelled', required
  - `created_at` string, date-time, required
  - `completed_at` string, date-time
  - `result` object
    - `urls` union
      - string[]
      - object[]
        - `type` 'model' | 'preview', required
        - `url` string, uri, required
      - object
    - `style_id` string
  - `error` object
    - `code` string, required
    - `message` string

## Other responses

- `404` — The job was not found or the client is not authorized to see it

---

[API](https://skmtc.net/krea/apis/krea-api.md) · [All operations](https://skmtc.net/krea/apis/krea-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/krea/krea-api/versions/01eead867917/schema)
