# List dashboards in a group

Retrieves a paginated list of dashboards within a specific group.

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

[[path_param]]
name = "id"
description = "The unique identifier of the dashboard group."
required = true
type = "integer"

[[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"

[[query_param]]
name = "query"
description = "Search for dashboards by name within the group."
required = false
type = "string"

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

[responses]
[[response]]
status = 200
description = "A paginated list of dashboards in the specified group."
body = '''
{
  "data": [
    {
      "id": "12345",
      "type": "dashboard",
      "attributes": {
        "team_id": 123,
        "team_name": "My Team",
        "name": "My Dashboard",
        "dashboard_group_id": 456,
        "refresh_interval": 0,
        "date_range_from": "now-3h",
        "date_range_to": "now",
        "created_at": "2026-03-25T10:00:00.000Z",
        "updated_at": "2026-03-25T10:00:00.000Z"
      }
    }
  ],
  "pagination": {
    "first": "https://telemetry.betterstack.com/api/v2/dashboard-groups/456/dashboards?page=1",
    "last": "https://telemetry.betterstack.com/api/v2/dashboard-groups/456/dashboards?page=1",
    "prev": null,
    "next": null
  }
}
'''

[[response]]
status = 404
description = "A dashboard group with the specified ID was not found."
[/responses]

## Example request

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