> ## 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.

# List mockup comments

> List comments on a mockup.

Returns mockup comments for the requested mockup and current mockup version.

## Query parameters

<ParamField query="mockup_id" type="string" required>
  UUID of the mockup.
</ParamField>

<ParamField query="per_page" type="integer">
  Results per page. Default: `10`.
</ParamField>

<ParamField query="page" type="integer">
  Page number. Default: `1`.
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "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
    }
  }
  ```
</ResponseExample>
