GET
/
v1
/
dashboards
/
{id}
Retrieves a dashboard
curl --request GET \
  --url https://api.rootly.com/v1/dashboards/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "853c7a96-c59a-42a9-9e1b-07ff1da2c64d",
    "type": "dashboards",
    "attributes": {
      "team_id": 111,
      "user_id": 98,
      "name": "Dashboard 10",
      "description": null,
      "slug": "dashboard-10",
      "public": false,
      "owner": "team",
      "range": "Last 30 Days",
      "period": "day",
      "color": "#E9E2FF",
      "icon": "📊",
      "auto_refresh": false,
      "updated_at": "2025-09-23T14:13:17.744-07:00",
      "created_at": "2025-09-23T14:13:17.744-07:00"
    },
    "relationships": {
      "panels": {
        "data": []
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
required

Resource UUID

Query Parameters

include
enum<string>

comma separated if needed. eg: panels

Available options:
panels

Response

dashboard found by slug

data
object
required