> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stateset.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Job Replay

> Ordered tool-execution timeline for a job. Same shape as the dashboard's /api/jobs/{id}/replay, returned as a plain JSON array so callers can drive their own…

Ordered tool-execution timeline for a job.

Same shape as the dashboard's `/api/jobs/&#123;id&#125;/replay`, returned as a
plain JSON array so callers can drive their own debugging UI without
fetching the full Markdown transcript first.

`tool_output` is truncated to 2000 chars per row to keep responses
bounded; full output is available via `/jobs/&#123;id&#125;/transcript`.

### Path parameters

<ParamField path="job_id" type="string (uuid)" required />

### Response

`app__api__routes__v1__trigger__ToolExecutionResponse[]` — each element:

<ResponseField name="id" type="string" required />

<ResponseField name="sequence_number" type="integer" required />

<ResponseField name="tool_name" type="string" required />

<ResponseField name="tool_input" type="object" required />

<ResponseField name="tool_output" type="string,null" required />

<ResponseField name="screenshot_key" type="string,null" required />

<ResponseField name="thinking_summary" type="string,null" required />

<ResponseField name="duration_ms" type="integer,null" required />

<ResponseField name="created_at" type="string" required />

### Status codes

| Code  | Meaning             |
| ----- | ------------------- |
| `200` | Successful Response |
| `422` | Validation Error    |

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://api.computer.stateset.app/api/v1/jobs/{job_id}/replay' \
    --header 'X-API-Key: YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "sequence_number": 1001,
      "tool_name": "string",
      "tool_input": {},
      "tool_output": "string",
      "screenshot_key": "string",
      "thinking_summary": "string",
      "duration_ms": 8,
      "created_at": "2026-08-31T14:22:05Z"
    }
  ]
  ```
</ResponseExample>
