api reference

Runs

Execution history for a scheduled or manually-triggered query/monitor run.

GET/api/runs

Run history for one entity, newest first, capped at 10 rows.

ParamTypeRequiredDescription
entity_typestringYes"query" or "monitor".
entity_idintegerYesThe entity's id.

Response

[
  {
    "id": 7781,
    "status": "success",
    "triggered_by": "schedule",
    "scheduled_for": "2026-07-17T12:00:00Z",
    "started_at": "2026-07-17T12:00:01Z",
    "finished_at": "2026-07-17T12:00:02Z",
    "duration_ms": 420,
    "row_count": 138,
    "error": null,
    "data_age_secs": 0,
    "waiting_on_run_id": null,
    "query_result_id": 501,
    "condition_met": null,
    "notified": []
  }
]

GET/api/runs/{id}/result.csv

Download this run's result as CSV. 404s if the run failed or its result was garbage-collected.