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

# get_dashboard

> Layout and contained reports for one dashboard.

## Parameters

| Parameter      | Type    | Required | Description                         |
| -------------- | ------- | -------- | ----------------------------------- |
| `dashboard_id` | integer | Yes      |                                     |
| `format`       | string  | No       | `json` (default), `csv`, or `yaml`. |

## Output

```json theme={null}
{
  "id": 12,
  "name": "Weekly Performance",
  "layout": { "grid": [...] },
  "master_filters": [...],
  "reports": [
    { "id": 42, "name": "ROAS by Source", "report_type": "table", "metrics": ["roas"], "sources": ["facebook_ads", "google_ads"], "attribution_model": "last_touch", "group_by": ["sources"] }
  ]
}
```

For full report config, follow up with [`get_report_definition`](/mcp/tools/get-report-definition). To execute a report, use [`run_saved_report`](/mcp/tools/run-saved-report).
