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
}
}
List comments on a mockup.
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
}
}
Returns mockup comments for the requested mockup and current mockup version.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.
10.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
}
}
Was this page helpful?