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

# Get job status (deprecated)

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

> **Deprecated.**

**Deprecated.** Superseded by `GET /api/jobs/{job_id}` (plural path).
Clients should migrate; the endpoint is retained for backward
compatibility but will be removed in a future release.

## Path parameters

- `job_id` string, uuid, required

## Response `200`

Success - Job status returned

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

## Other responses

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

---

[API](https://skmtc.net/comfy-org/apis/comfyui-api.md) · [All operations](https://skmtc.net/comfy-org/apis/comfyui-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/comfy-org/comfyui-api/revisions/a3660438bbe9/schema)
