v1

latestOpenAPI 3.1.02026-07-263644911022.4 KB
Dashboard API

Get Dashboard Execution Summary

Use this endpoint to retrieve an aggregated summary of workflow executions. You can optionally filter by time range and status.

get/v1/dashboards/executions

Query parameters

startTimestring date-time

Start of the time range filter (RFC 3339 format).

endTimestring date-time

End of the time range filter (RFC 3339 format).

status'pending' | 'running' | 'completed' | 'failed'

Filter results by execution status.

Response

Indicates that the request was successful and the response contains the requested data.

totalinteger

Total number of executions matching the filters.

completedinteger

Number of completed executions.

failedinteger

Number of failed executions.

pendinginteger

Number of pending executions.

runninginteger

Number of currently running executions.

Example response

{
  "total": 150,
  "completed": 120,
  "failed": 25,
  "pending": 3,
  "running": 2
}