Dashboard
Aggregated resource counts for mobile and admin dashboard views. The summary returns counts of all resources accessible to the authenticated user, filtered by multi-tenancy rules.
All endpoints require authentication via X-API-Key header and the appropriate scope.
Dashboard Summary Object
{
"workflows": 12,
"apps": 5,
"executions": 248,
"workspaces": 3,
"models": 7
}
GET /api/v1/dashboard/summary
Get aggregated resource counts: workflows, apps, executions, workspaces, and AI models for the authenticated user. Counts respect multi-tenancy access rules and exclude soft-deleted resources where applicable.
Scope: dashboard:read
Response 200 OK
{
"workflows": 12,
"apps": 5,
"executions": 248,
"workspaces": 3,
"models": 7
}
| Field | Type | Description |
|---|---|---|
workflows | number | Count of non-deleted workflows the user can access |
apps | number | Count of non-deleted apps the user can access |
executions | number | Count of workflow executions owned by the user |
workspaces | number | Count of workspaces the user can access |
models | number | Count of non-deleted AI models the user can access |