Skip to main content
GET
/
comments
/
{id}
Get comment
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"
  }
}
Returns full details for a specific comment, including replies and metadata.

Path parameters

id
string
required
UUID of the comment.
{
  "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"
  }
}