Get a single chart comment

Returns a single comment pinned to a chart.

GET https://telemetry.betterstack.com/api/v2/dashboards/{dashboard_id}/charts/{chart_id}/comments/{id}

URL parameters

dashboard_id
required integer
chart_id
required integer
id
required integer

Headers

Authorization
required string
200

Response body

{
  "data": {
    "id": "1442",
    "type": "chart_comment",
    "attributes": {
      "chart_id": 18718,
      "content": "Latency back to normal after the rollout.",
      "created_at": "2026-08-17T13:41:02.114Z",
      "updated_at": "2026-08-17T13:41:02.114Z",
      "dt": "2026-08-17T13:30:00.000Z",
      "plaintext_content": "Latency back to normal after the rollout.",
      "user_email": "sarah@example.com",
      "api_authored": false
    }
  }
}
404

Example request

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


user_email is returned only when the comment has an author. A comment created with an API token has none, so the field is omitted. See List all comments on a chart for what the other attributes mean.