curl --request GET \
--url https://api.surefeedback.com/api/v1/comments/{id} \
--header 'X-API-Key: <api-key>'{
"success": true,
"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,
"replies": [],
"created_at": "2026-03-01T10:00:00Z",
"updated_at": "2026-03-01T10:00:00Z"
}
}
Retrieve a single comment by ID.
curl --request GET \
--url https://api.surefeedback.com/api/v1/comments/{id} \
--header 'X-API-Key: <api-key>'{
"success": true,
"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,
"replies": [],
"created_at": "2026-03-01T10:00:00Z",
"updated_at": "2026-03-01T10:00:00Z"
}
}
{
"success": true,
"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,
"replies": [],
"created_at": "2026-03-01T10:00:00Z",
"updated_at": "2026-03-01T10:00:00Z"
}
}
Was this page helpful?