Get full detail for a single job, including state history and recent executions.
Returns the complete job record with state history timeline and recent executions of the same task name.Documentation Index
Fetch the complete documentation index at: https://docs.sluice.sh/llms.txt
Use this file to discover all available pages before exploring further.
| Parameter | Type | Description |
|---|---|---|
id | string | Sluice job UUID. |
| Field | Type | Description |
|---|---|---|
tags | object | User-defined labels. |
previousState | string? | State before the current one. |
attempt | integer | Current attempt number (1-indexed). |
maxRetries | integer? | Configured retry limit. |
progress | number? | Progress value (0.0–1.0). |
args | any | Job arguments (null in V0 — argument capture is a future feature). |
result | any | Job return value (null in V0). |
stacktrace | string? | Full traceback on failure. |
parentId | string? | Parent job ID (for chains/workflows). |
rootId | string? | Root job of a chain/workflow. |
extensions | object | Framework-specific data. |
stateHistory | array | Ordered list of state transitions with timestamps. |
recentExecutions | array | Recent runs of the same task name (for comparison). |