tools.ozone.signature.findRelatedAccounts

ozone-lexicons.bsky.social

Documentation

Get accounts that share some matching threat signatures with the root account.

main query

Get accounts that share some matching threat signatures with the root account.

Parameters

cursor string Optional

No description available.

did string did Required

A decentralized identifier (DID).

limit integer Optional

No description available.

Output

Encodingapplication/json
accounts array Required

No description available.

cursor string Optional

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://api.bsky.social)
Parameters
A decentralized identifier (DID).
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "accounts"
      ],
      "properties": {
        "cursor": {
          "type": "string"
        },
        "accounts": {
          "type": "array",
          "items": {
            "ref": "#relatedAccount",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "did"
    ],
    "properties": {
      "did": {
        "type": "string",
        "format": "did"
      },
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string"
      }
    }
  },
  "description": "Get accounts that share some matching threat signatures with the root account."
}
relatedAccount object

No description available.

Properties

View raw schema
{
  "type": "object",
  "required": [
    "account"
  ],
  "properties": {
    "account": {
      "ref": "com.atproto.admin.defs#accountView",
      "type": "ref"
    },
    "similarities": {
      "type": "array",
      "items": {
        "ref": "tools.ozone.signature.defs#sigDetail",
        "type": "ref"
      }
    }
  }
}

Lexicon Garden

@