API Reference
Get a routine run
A run's full detail, findings included.
GET
/routines/runs/{run_id}anyReturns the run's summary (markdown, null until done), per-stage stats, and every finding with its severity, category, line anchor and evidence trail.
Path parameters
run_iduuidrequiredThe run to fetch.
Responses
200The run's detail
json
{
"id": "b0dc2159-...",
"kind": "review",
"project": "your-repo",
"status": "done",
"summary": "<markdown>",
"findings": [ { "id": 1, "file_path": "src/a.ts", "severity": "high", "category": "bug", "title": "...", "anchored": true } ]
}404Unknown run
json
{ "detail": "routine run 'b0dc2159-...' not found" }