app.didpic.admin.listScans

lexicons.didpic.app

Documentation

List moderation scans.

main query

List moderation scans.

Parameters

cursor string Optional

No description available.

kind string Optional

No description available.

label string Optional

No description available.

limit integer Optional

No description available.

provider string Optional

No description available.

Output

Encodingapplication/json
cursor string Optional

No description available.

scans 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://api.bsky.social)
Parameters
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "scans"
      ],
      "properties": {
        "scans": {
          "type": "array",
          "items": {
            "ref": "#scan",
            "type": "ref"
          }
        },
        "cursor": {
          "type": "string"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "kind": {
        "enum": [
          "post",
          "comment",
          "avatar",
          "banner"
        ],
        "type": "string"
      },
      "label": {
        "enum": [
          "nsfw",
          "clean",
          "review"
        ],
        "type": "string"
      },
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 200,
        "minimum": 1
      },
      "cursor": {
        "type": "string"
      },
      "provider": {
        "type": "string"
      }
    }
  },
  "description": "List moderation scans."
}
scan object

No description available.

Properties

id string Required

No description available.

kind string Required

No description available.

label string Optional

No description available.

provider string Required

No description available.

scannedAt string datetime Required

An RFC 3339 formatted timestamp.

scores unknown Required

No description available.

subjectDid string did Required

A decentralized identifier (DID).

subjectImageCid string cid Required

A content identifier (CID) referencing immutable data.

subjectUri string at-uri Optional

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

View raw schema
{
  "type": "object",
  "required": [
    "id",
    "kind",
    "subjectDid",
    "subjectImageCid",
    "provider",
    "scores",
    "scannedAt"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "kind": {
      "type": "string"
    },
    "label": {
      "type": "string"
    },
    "scores": {
      "type": "unknown"
    },
    "provider": {
      "type": "string"
    },
    "scannedAt": {
      "type": "string",
      "format": "datetime"
    },
    "subjectDid": {
      "type": "string",
      "format": "did"
    },
    "subjectUri": {
      "type": "string",
      "format": "at-uri"
    },
    "subjectImageCid": {
      "type": "string",
      "format": "cid"
    }
  }
}

Lexicon Garden

@