> ## Documentation Index
> Fetch the complete documentation index at: https://developer.surefeedback.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get comment activity

> Retrieve comment activity logs for a site.

Returns recent activity for comments on a site, including who performed the action and which comment was affected.

## Query parameters

<ParamField query="site_id" type="string" required>
  UUID of the site.
</ParamField>

<ParamField query="action" type="string">
  Filter by action, for example `created`, `updated`, `resolved`, or `replied`.
</ParamField>

<ParamField query="user_id" type="string">
  Filter by user UUID.
</ParamField>

<ParamField query="days" type="integer">
  Limit results to the last N days.
</ParamField>

<ParamField query="limit" type="integer">
  Maximum number of records to return. Default: `50`.
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": [
      {
        "id": "activity-001",
        "type": "comment.updated",
        "action": "updated",
        "timestamp": "2026-03-27T10:15:00Z",
        "user": {
          "id": "550e8400-e29b-41d4-a716-446655440000",
          "firstName": "Jane",
          "lastName": "Smith",
          "email": "jane@example.com"
        },
        "comment": {
          "id": "990e8400-e29b-41d4-a716-446655440004",
          "content": "The header looks misaligned on mobile.",
          "pageUrl": "https://example.com/home",
          "pageTitle": "Home"
        },
        "description": "Jane Smith updated a comment.",
        "metadata": {
          "comment_id": "990e8400-e29b-41d4-a716-446655440004"
        }
      }
    ]
  }
  ```
</ResponseExample>
