Get a single dashboard

Retrieves detailed information for a single dashboard by its ID.

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

URL parameters

id
required string

Headers

Authorization
required string
200

Response body

{
  "data": {
    "id": "1234",
    "type": "dashboard",
    "attributes": {
      "team_id": 123456,
      "team_name": "example-team",
      "name": "Sample Dashboard",
      "created_at": "2025-01-20T15:00:00.000Z",
      "updated_at": "2025-01-20T15:00:00.000Z"
    }
  }
}
401
404

Response body

{
  "errors": "Resource with the provided ID was not found"
}

Example cURL

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