Skip to main content

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

curl -X GET "https://relay.snipp.gg/comments?shareCode=AbCd1234" \
  -H "relay-key: YOUR_RELAY_KEY"

Responses

{
  "comments": [
    {
      "id": "00000000-0000-4000-8000-000000000000",
      "body": "Nice shot!",
      "userId": "123456789012345678",
      "user": {
        "username": "playerone",
        "avatar": "https://i.snipp.gg/avatars/123456789012345678/avatar.png"
      },
      "createdAt": "2026-05-03T12:00:00Z"
    }
  ]
}