List Run Events
Read the durable event log for a run: started, node progress, and completion markers.
curl -X GET 'https://api.edgaze.ai/v1/runs/7c9e6679-7425-40de-944b-e07fc1f90ae7/events' \ -H 'Authorization: Bearer edgaze_sk_live_YOUR_KEY'
https://api.edgaze.ai/v1/runs/{run_id}/eventsOverview#
Returns the durable, ordered event log for a run: `run.started`, `node.completed`, `run.completed`, and related markers. Each event has a monotonic sequence number and ISO timestamp.
Use alongside GET /runs/{id} when you need step-level visibility: for example, showing progress in a dashboard or debugging which node failed.
Authorization#
run:readParameters#
Headers
AuthorizationstringheaderrequiredBearer token with run:read scope.
Example: Bearer edgaze_sk_live_…
Path parameters
run_idstringpathrequiredUUID returned from POST /runs.
Example: 7c9e6679-7425-40de-944b-e07fc1f90ae7
Response#
Example payloads are in the request/response panel above.
Edge cases#
The endpoint returns the complete ordered event log for the run.
Combine GET /runs/{id} for outputs with GET /runs/{id}/events for step-by-step progress.