Skip to main content
GET
/
mockup-threads
Mockup threads
curl --request GET \
  --url https://api.surefeedback.com/api/v1/mockup-threads \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": [
    {
      "id": "...",
      "mockup_id": "110e8400-e29b-41d4-a716-44665544000b",
      "status": "open",
      "comments_count": 3,
      "created_at": "2026-03-01T10:00:00Z"
    }
  ]
}
Returns comment threads for a mockup. Threads group related comments and replies together.

Query parameters

mockup_id
string
required
UUID of the mockup.
{
  "success": true,
  "data": [
    {
      "id": "...",
      "mockup_id": "110e8400-e29b-41d4-a716-44665544000b",
      "status": "open",
      "comments_count": 3,
      "created_at": "2026-03-01T10:00:00Z"
    }
  ]
}