# Dashboard

Financial aggregates and agent workload indicators.

### `GET /api/v1/dashboard/summary`

Revenue, expenses, cash position, workload counts, monthly trend, and notifications.

- operationId: `get_dashboard_summary`
- scope: `read`

**Response**

```json
{
  "data": {
    "currency": "EUR",
    "revenue": 26500,
    "expenses": 8420,
    "cashPosition": 18080,
    "uncategorized": 4,
    "missingReceipts": 2,
    "agentSuggested": 2,
    "pendingReview": 3,
    "recentTransactions": [ … ],
    "monthlyTrend": [ … ],
    "notifications": [ … ]
  }
}
```
