---
title: "Get job status"
method: GET
path: "/api/job/{job_id}/status"
tags: ["job"]
---

# Get job status

`GET /api/job/{job_id}/status`

Returns the current status of a specific job by ID

## Path parameters

- `job_id` string, uuid, required

## Response `200`

Success - Job status returned

- JobStatusResponse — Job status information
  - `id` string, uuid, required — The job ID
  - `status` 'waiting_to_dispatch' | 'pending' | 'in_progress' | 'completed' | 'error' | 'cancelled', required — Current job status
  - `created_at` string, date-time, required — When the job was created
  - `updated_at` string, date-time, required — When the job was last updated
  - `last_state_update` string, date-time — When the job status was last changed
  - `assigned_inference` string, nullable — The inference instance assigned to this job (if any)
  - `error_message` string, nullable — Error message if the job failed

## Other responses

- `401` — Unauthorized
- `403` — Forbidden - job belongs to another user
- `404` — Job not found
- `500` — Internal server error

---

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