> ## Documentation Index
> Fetch the complete documentation index at: https://docs.snipp.gg/llms.txt
> Use this file to discover all available pages before exploring further.

# List Comments

List comments on a post. Pass `shareCode` as a query parameter or `code` as a header.

## Behavior

* Returns each comment with the author's username, nickname, avatar, verified flag, and PLUS flag.
* `likes` is the total like count on the comment, and `liked` is whether you have liked it. Use [Like Comment](/relay-reference/endpoint/comment-like) to toggle.
* Comments from suspended users and from users you have blocked are filtered out.
* Private posts and moderated posts are visible only to the owner.

## Examples

```bash theme={null}
curl -X GET "https://relay.snipp.gg/comments?shareCode=AbCd1234" \
  -H "relay-key: YOUR_RELAY_KEY"
```

## Responses

```json theme={null}
{
  "comments": [
    {
      "id": "00000000-0000-4000-8000-000000000000",
      "body": "Nice shot!",
      "userId": "123456789012345678",
      "createdAt": "2026-05-03T12:00:00Z",
      "username": "playerone",
      "nickname": "Player One",
      "avatar": "https://i.snipp.gg/avatars/123456789012345678/avatar.png",
      "isVerified": false,
      "plus": true,
      "likes": 3,
      "liked": false
    }
  ]
}
```
