curl --request GET \
--url 'https://api.computer.stateset.app/api/v1/jobs/{job_id}/replay' \
--header "X-API-Key: $STATESET_COMPUTER_USE_API_KEY"
[
{
"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"
}
]
Get Job Replay
Ordered tool-execution timeline for a job. Same shape as the dashboard’s /api/jobs//replay, returned as a plain JSON array so callers can drive their own…
GET
/
api
/
v1
/
jobs
/
{job_id}
/
replay
curl --request GET \
--url 'https://api.computer.stateset.app/api/v1/jobs/{job_id}/replay' \
--header "X-API-Key: $STATESET_COMPUTER_USE_API_KEY"
[
{
"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"
}
]
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 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/{id}/transcript.
Path parameters
string (uuid)
required
Response
app__api__routes__v1__trigger__ToolExecutionResponse[] — each element:
string
required
integer
required
string
required
object
required
string,null
required
string,null
required
string,null
required
integer,null
required
string
required
Status codes
| Code | Meaning |
|---|---|
200 | Successful Response |
422 | Validation Error |
curl --request GET \
--url 'https://api.computer.stateset.app/api/v1/jobs/{job_id}/replay' \
--header "X-API-Key: $STATESET_COMPUTER_USE_API_KEY"
[
{
"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"
}
]
Last modified on August 31, 2026