dokkaiv0.1.0
API Reference

Get a routine run

A run's full detail, findings included.

GET/routines/runs/{run_id}any

Returns 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_iduuidrequired
The 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" }