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.
Returns comments for a site, optionally filtered by page URL, status, priority, or assignee.
Requires authentication via X-API-Key: sf_your_api_key_here.
Query parameters
UUID of the site to fetch comments for.
URL path or route of the page, for example / or /about.
Device type: DESKTOP, MOBILE, or TABLET.
Filter comments by a specific page URL.
Filter by status: OPEN, RESOLVED, IN_PROGRESS, or CLOSED.
Filter by priority: LOW, MEDIUM, HIGH, or URGENT.
UUID of the user the comments are assigned to.
Results per page. Default: 25. Max: 100.
{
"success": true,
"data": {
"data": [
{
"id": "990e8400-e29b-41d4-a716-446655440004",
"content": "The header looks misaligned on mobile.",
"status": "OPEN",
"priority": "HIGH",
"page_url": "https://example.com/home",
"created_by": { "id": "...", "name": "Jane Smith" },
"assigned_to": null,
"created_at": "2026-03-01T10:00:00Z"
}
],
"current_page": 1,
"total": 42
}
}