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.

Report a post for violating community guidelines. Reports are reviewed by the moderation team.

Endpoint

Report a Post

POST /report
Submit a report for a post using its share code. An optional reason can be provided to help moderators review the report. Request body:
{
  "code": "AbCd1234",
  "reason": "This post contains inappropriate content"
}
FieldTypeRequiredDescription
codestringYesThe share code of the post to report
reasonstringNoReason for the report (max 200 characters)
Response:
{
  "success": true
}

Errors

CodeErrorWhen
400Missing or invalid codecode is empty or missing
400Reason too longreason exceeds 200 characters
403Post is already moderatedThe post has already been actioned by moderators
403You cannot report your own postcode belongs to a post you own
403Author has blocked youThe post author has blocked you
404Post not foundPost does not exist or is private
429Rate limit exceededToo many requests

Examples

Report a post:
curl -X POST "https://relay.snipp.gg/report" \
  -H "relay-key: YOUR_RELAY_KEY" \
  -H "Content-Type: application/json" \
  -d '{"code": "AbCd1234", "reason": "Inappropriate content"}'
Report a post without a reason:
curl -X POST "https://relay.snipp.gg/report" \
  -H "relay-key: YOUR_RELAY_KEY" \
  -H "Content-Type: application/json" \
  -d '{"code": "AbCd1234"}'

Responses

{
  "success": true
}