tools.ozone.safelink.queryEvents

ozone-lexicons.bsky.social

Documentation

Query URL safety audit events

main procedure

Query URL safety audit events

Input

Encodingapplication/json
cursor string Optional

Cursor for pagination

limit integer Optional

Maximum number of results to return

minimum: 1maximum: 100
patternType string Optional

Filter by pattern type

sortDirection string Optional

Sort direction

urls array Optional

Filter by specific URLs or domains

Output

Encodingapplication/json
cursor string Optional

Next cursor for pagination. Only present if there are more results.

events array Required

No description available.

Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://bsky.social)
Enter valid JSON for the request body
View raw schema
{
  "type": "procedure",
  "input": {
    "schema": {
      "type": "object",
      "properties": {
        "urls": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Filter by specific URLs or domains"
        },
        "limit": {
          "type": "integer",
          "default": 50,
          "maximum": 100,
          "minimum": 1,
          "description": "Maximum number of results to return"
        },
        "cursor": {
          "type": "string",
          "description": "Cursor for pagination"
        },
        "patternType": {
          "type": "string",
          "description": "Filter by pattern type"
        },
        "sortDirection": {
          "type": "string",
          "default": "desc",
          "description": "Sort direction",
          "knownValues": [
            "asc",
            "desc"
          ]
        }
      }
    },
    "encoding": "application/json"
  },
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "events"
      ],
      "properties": {
        "cursor": {
          "type": "string",
          "description": "Next cursor for pagination. Only present if there are more results."
        },
        "events": {
          "type": "array",
          "items": {
            "ref": "tools.ozone.safelink.defs#event",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Query URL safety audit events"
}

Lexicon Garden

@