# List all dashboard groups

Retrieves a paginated list of your team's dashboard groups.

[endpoint]
base_url = "https://telemetry.betterstack.com"
path = "/api/v2/dashboard-groups"
method = "GET"

[[query_param]]
name = "page"
description = "Page number for pagination."
required = false
type = "integer"

[[query_param]]
name = "per_page"
description = "Number of items per page (max 250)."
required = false
type = "integer"

[[header]]
name = "Authorization"
description = "Bearer `$TOKEN`"
required = true
type = "string"
[/endpoint]

[responses]
[[response]]
status = 200
description = "A paginated list of dashboard groups."
body = '''
{
  "data": [
    {
      "id": "456",
      "type": "dashboard_group",
      "attributes": {
        "name": "Production Monitoring",
        "created_at": "2026-02-20T10:00:00Z",
        "updated_at": "2026-02-23T14:30:00Z"
      }
    }
  ],
  "pagination": {
    "first": "https://telemetry.betterstack.com/api/v2/dashboard-groups?page=1",
    "last": "https://telemetry.betterstack.com/api/v2/dashboard-groups?page=2",
    "prev": null,
    "next": "https://telemetry.betterstack.com/api/v2/dashboard-groups?page=2"
  }
}
'''

[[response]]
status = 401
description = "Invalid or missing authentication token."
[/responses]

## Example request

```shell
[label cURL]
curl --request GET \
     --url "https://telemetry.betterstack.com/api/v2/dashboard-groups" \
     --header "Authorization: Bearer $TOKEN"
```
