List comments

List all comments under an incident. This endpoint does not support pagination and returns all comments instead.

GET https://uptime.betterstack.com/api/v2/incidents/{incident_id}/comments

URL parameters

incident_id
required string

Headers

Authorization
required string
Content_Type
string
200

Response body

{
  "data": [
    {
      "id": "123",
      "type": "incident_comment",
      "attributes": {
        "id": 123,
        "content": "posted from API",
        "created_at": "2025-06-03T12:10:28.357Z",
        "updated_at": "2025-06-03T12:10:28.357Z"
      }
    },
    {
      "id": "124",
      "type": "incident_comment",
      "attributes": {
        "id": 124,
        "content": "posted by user",
        "user_id": 456,
        "user_email": "test@example.com",
        "created_at": "2025-06-03T12:10:28.450Z",
        "updated_at": "2025-06-03T12:10:28.450Z"
      }
    }
  ]
}
404

Example cURL

Example
curl --url https://uptime.betterstack.com/api/v2/incidents/1/comments \
  --header "Authorization: Bearer $TOKEN" \
  --header 'Content-Type: application/json'