List dashboard templates

Retrieves a list of all available dashboard templates. This endpoint is not paginated and returns all available templates in a single response.

The id returned for each template can be used with the Export dashboard endpoint to retrieve the full JSON configuration for that template.

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

Headers

Authorization
required string
200

Response body

{
  "data": [
    {
      "id": "456",
      "type": "dashboard_template",
      "attributes": {
        "name": "Blank dashboard",
        "description": "Create a custom dashboard from scratch.",
        "categories": []
      }
    },
    {
      "id": "484486",
      "type": "dashboard_template",
      "attributes": {
        "name": "Better Stack Collector",
        "description": "Monitor services instrumented by the Better Stack collector.",
        "categories": [
          "infrastructure",
          "ebpf"
        ]
      }
    }
  ]
}
401

Example Request

cURL
curl -L -H "Authorization: Bearer $TOKEN" \
     "https://telemetry.betterstack.com/api/v2/dashboards/templates"