Skip to main content
GET
/
mockup-comments
List 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_coord": 45.2,
        "y_coord": 30.1,
        "created_by": { "name": "Jane Smith" },
        "created_at": "2026-03-01T10:00:00Z"
      }
    ]
  },
  "pagination": {
    "current_page": 1,
    "per_page": 10,
    "total": 5,
    "last_page": 1,
    "has_more": false
  }
}

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 mockup comments for the requested mockup and current mockup version.

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_coord": 45.2,
        "y_coord": 30.1,
        "created_by": { "name": "Jane Smith" },
        "created_at": "2026-03-01T10:00:00Z"
      }
    ]
  },
  "pagination": {
    "current_page": 1,
    "per_page": 10,
    "total": 5,
    "last_page": 1,
    "has_more": false
  }
}