Skip to main content
GET
/
comments
/
pages
List comment pages
curl --request GET \
  --url https://api.surefeedback.com/api/v1/comments/pages \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": [
    {
      "page_url": "https://example.com/home",
      "page_title": "Home",
      "comment_count": 12
    },
    {
      "page_url": "https://example.com/about",
      "page_title": "About",
      "comment_count": 3
    }
  ],
  "meta": {
    "organization_id": "660e8400-e29b-41d4-a716-446655440001",
    "site_id": "880e8400-e29b-41d4-a716-446655440003",
    "timestamp": "2026-03-27T12:00:00.000Z"
  }
}
Returns the unique pages for a site, along with comment counts and summary metadata used by the comments sidebar.

Query parameters

site_id
string
required
UUID of the site.
{
  "success": true,
  "data": [
    {
      "page_url": "https://example.com/home",
      "page_title": "Home",
      "comment_count": 12
    },
    {
      "page_url": "https://example.com/about",
      "page_title": "About",
      "comment_count": 3
    }
  ],
  "meta": {
    "organization_id": "660e8400-e29b-41d4-a716-446655440001",
    "site_id": "880e8400-e29b-41d4-a716-446655440003",
    "timestamp": "2026-03-27T12:00:00.000Z"
  }
}