Skip to main content
GET
/
mockup-comments
Mockup comments
curl --request GET \
  --url https://api.surefeedback.com/api/v1/mockup-comments \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": {
    "data": [
      {
        "id": "...",
        "content": "The button color should be darker.",
        "status": "open",
        "priority": "medium",
        "x_position": 45.2,
        "y_position": 30.1,
        "created_by": { "name": "Jane Smith" },
        "created_at": "2026-03-01T10:00:00Z"
      }
    ],
    "total": 5
  }
}
Returns all comments on a mockup, with support for filtering and pagination.

Query parameters

mockup_id
string
required
UUID of the mockup.
per_page
integer
Results per page. Default: 10.
page
integer
Page number. Default: 1.
{
  "success": true,
  "data": {
    "data": [
      {
        "id": "...",
        "content": "The button color should be darker.",
        "status": "open",
        "priority": "medium",
        "x_position": 45.2,
        "y_position": 30.1,
        "created_by": { "name": "Jane Smith" },
        "created_at": "2026-03-01T10:00:00Z"
      }
    ],
    "total": 5
  }
}