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.

Return the list of users you have blocked.

Behavior

  • Returns each block as a userId (the blocked user’s snowflake ID) and a created timestamp.
  • Use GET /users/{id} on each userId to fetch usernames and avatars.
  • Users who have blocked you do not appear here. This endpoint only lists blocks you initiated.

Examples

curl -X GET "https://relay.snipp.gg/blocks" \
  -H "relay-key: YOUR_RELAY_KEY"

Responses

{
  "blocks": [
    {
      "userId": "123456789012345678",
      "created": "2026-05-03T12:00:00Z"
    }
  ]
}