List dashboard templates

Retrieves a list of all available dashboard templates. These templates can be used as a starting point for creating new dashboards.

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"
        ]
      }
    },
    {
      "id": "457",
      "type": "dashboard_template",
      "attributes": {
        "name": "Docker Monitoring",
        "description": "Comprehensive Docker container monitoring dashboard.",
        "categories": [
          "containers",
          "infrastructure"
        ]
      }
    }
  ]
}
401

Example Request

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