> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bimengine.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Dashboard

> GET /api/gov/dashboard

```bash theme={null}
GET /api/gov/dashboard
```

No parameters. Returns stats and recent submissions for the authenticated user's jurisdiction.

## Response

```json theme={null}
{
  "stats": {
    "totalSubmissions": 42,
    "pendingReviews": 8,
    "approvedThisMonth": 12,
    "avgReviewDays": 3.5,
    "greenCount": 20,
    "yellowCount": 15,
    "redCount": 7
  },
  "recentSubmissions": [
    {
      "id": "sub_abc123",
      "status": "PENDING",
      "submittedAt": "2026-03-01T10:00:00Z",
      "round": 1,
      "assignedTo": null,
      "profile": {
        "address": "123 Main St",
        "city": "Austin",
        "state": "TX",
        "firmId": "firm_xyz",
        "verdictSummary": {
          "overall": "YELLOW",
          "passCount": 18,
          "failCount": 2,
          "needsReviewCount": 5
        }
      },
      "jurisdiction": {
        "name": "City of Austin"
      }
    }
  ]
}
```

## Fields

| Field               | Type     | Description                           |
| ------------------- | -------- | ------------------------------------- |
| `totalSubmissions`  | `number` | All submissions for this jurisdiction |
| `pendingReviews`    | `number` | PENDING status count                  |
| `approvedThisMonth` | `number` | Approvals in current month            |
| `avgReviewDays`     | `number` | Average days to completion            |
| `greenCount`        | `number` | All-pass AI verdict                   |
| `yellowCount`       | `number` | Items needing review                  |
| `redCount`          | `number` | Failing items                         |
