List dashboards in a group

Retrieves a paginated list of dashboards within a specific group.

GET https://telemetry.betterstack.com/api/v2/dashboard-groups/{id}/dashboards

URL parameters

id
required integer

Query parameters

page
integer
per_page
integer
query
string

Headers

Authorization
required string
200

Response body

{
  "data": [
    {
      "id": "1234",
      "type": "dashboard",
      "attributes": {
        "team_id": 123456,
        "team_name": "example-team",
        "name": "Sample Dashboard",
        "dashboard_group_id": 456,
        "created_at": "2025-01-20T15:00:00.000Z",
        "updated_at": "2025-01-20T15: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
  }
}
404

Example Request

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