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

# surefeedback://sites/{id}

> Get a single site by UUID with comment statistics.

Returns full details for one site, including total and open comment counts.

**Requires:** `read` permission

## URI Template

```
surefeedback://sites/{id}
```

| Variable | Description |
| -------- | ----------- |
| `id`     | Site UUID   |

## Example

```json theme={null}
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "resources/read",
  "params": {
    "uri": "surefeedback://sites/c74916e6-b448-495a-ab36-d4b9639069e6"
  }
}
```

## Response

```json theme={null}
{
  "id": "c74916e6-b448-495a-ab36-d4b9639069e6",
  "name": "Marketing Site",
  "url": "example.com",
  "is_active": true,
  "comments_count": 24,
  "open_comments_count": 8,
  "created_at": "2026-01-01T00:00:00Z",
  "updated_at": "2026-02-15T00:00:00Z"
}
```

## Notes

* Returns an error if the site does not belong to the current project
* `open_comments_count` counts comments that have not yet been resolved
