# Get a single chart comment

Returns a single comment pinned to a chart.

[endpoint]
base_url = "https://telemetry.betterstack.com"
path = "/api/v2/dashboards/{dashboard_id}/charts/{chart_id}/comments/{id}"
method = "GET"

[[path_param]]
name = "dashboard_id"
description = "The unique identifier of the dashboard."
required = true
type = "integer"

[[path_param]]
name = "chart_id"
description = "The unique identifier of the chart."
required = true
type = "integer"

[[path_param]]
name = "id"
description = "The unique identifier of the comment."
required = true
type = "integer"

[[header]]
name = "Authorization"
description = "Bearer `$TOKEN`"
required = true
type = "string"
[/endpoint]

[responses]
[[response]]
status = 200
description = "The requested comment."
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
    }
  }
}
'''

[[response]]
status = 404
description = "A comment with the specified ID was not found on this chart."
[/responses]

## Example request

```shell
[label 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](https://betterstack.com/docs/logs/api/chart-comments/list/) for what the other attributes mean.
