Get a single dashboard section

Retrieves a single section by its ID from a specific dashboard.

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

URL parameters

dashboard_id
required integer
id
required integer

Headers

Authorization
required string
200

Response body

{
  "data": {
    "id": "890",
    "type": "section",
    "attributes": {
      "name": "Key Metrics",
      "y": 0,
      "collapsed": false
    }
  }
}
404

Example Request

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