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"
}
}
List all pages on a site that have comments.
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"
}
}
{
"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"
}
}
Was this page helpful?