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

# Get full job details

`GET /api/jobs/{job_id}`

Retrieve complete details for a specific job including workflow and outputs.
Used for detail views, workflow re-execution, and debugging.

## Path parameters

- `job_id` string, uuid, required

## Response `200`

Success - Job details retrieved

- JobDetailResponse — Full job details including workflow and outputs
  - `id` string, uuid, required — Unique job identifier
  - `status` 'pending' | 'in_progress' | 'completed' | 'failed' | 'cancelled', required — User-friendly job status
  - `workflow` object — Full ComfyUI workflow (10-100KB, omitted if not available)
  - `execution_error` ExecutionError — Detailed execution error information from ComfyUI
    - `node_id` string, required — ID of the node that failed
    - `node_type` string, required — Type name of the node (e.g., "KSampler")
    - `exception_message` string, required — Human-readable error message
    - `exception_type` string, required — Python exception type (e.g., "RuntimeError")
    - `traceback` string[], required — Array of traceback lines (empty array if not available)
    - `current_inputs` object, required — Input values at time of failure (empty object if not available)
    - `current_outputs` object, required — Output values at time of failure (empty object if not available)
  - `create_time` integer, required — Job creation timestamp (Unix timestamp in seconds)
  - `update_time` integer, required — Last update timestamp (Unix timestamp in seconds)
  - `outputs` object — Full outputs object from ComfyUI (only for terminal states)
  - `preview_output` object — Primary preview output (only for terminal states)
  - `outputs_count` integer — Total number of output files (omitted for non-terminal states)
  - `workflow_id` string — UUID identifying the workflow graph definition
  - `execution_status` object — ComfyUI execution status and timeline (only for terminal states)
  - `execution_meta` object — Node-level execution metadata (only for terminal states)

## Other responses

- `401` — Unauthorized - Authentication required
- `403` — Forbidden - Job does not belong to 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)
