List all dashboards

Returns a paginated list of your team's dashboards.

The list endpoint returns a summarized view of each dashboard. For the full dashboard configuration including variables, charts, and sections, use the Get a dashboard endpoint.

GET https://telemetry.betterstack.com/api/v2/dashboards

Query parameters

page
1 integer
per_page
50 integer
query
string
dashboard_group_id
integer

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": 789,
        "refresh_interval": 60,
        "date_range_from": "now-3h",
        "date_range_to": "now",
        "created_at": "2025-01-20T15:00:00.000Z",
        "updated_at": "2025-01-20T15:00:00.000Z"
      }
    }
  ],
  "pagination": {
    "first": "https://telemetry.betterstack.com/api/v2/dashboards?page=1&per_page=2",
    "last": "https://telemetry.betterstack.com/api/v2/dashboards?page=16&per_page=2",
    "prev": null,
    "next": "https://telemetry.betterstack.com/api/v2/dashboards?page=2&per_page=2"
  }
}
401

Example request

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