social.smallbury.notification.list

lexicon.pds.smallbury.social

Documentation

Notifications for the authenticated viewer (newest first). Includes read items; AppView may drop items older than 30 days.

main query

Notifications for the authenticated viewer (newest first). Includes read items; AppView may drop items older than 30 days.

Parameters

cursor string Optional

No description available.

limit integer Optional

No description available.

Output

Encodingapplication/json
cursor string Optional

No description available.

notifications 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": [
        "notifications"
      ],
      "properties": {
        "cursor": {
          "type": "string"
        },
        "notifications": {
          "type": "array",
          "items": {
            "ref": "#notificationView",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "limit": {
        "type": "integer",
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string"
      }
    }
  },
  "description": "Notifications for the authenticated viewer (newest first). Includes read items; AppView may drop items older than 30 days."
}
notificationView object

No description available.

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

id string Required

No description available.

isMutualTrust boolean Required

No description available.

kind string Required

No description available.

reactionCount integer Required

No description available.

minimum: 0
readAt string datetime Required

An RFC 3339 formatted timestamp.

replyCount integer Required

No description available.

minimum: 0
subjectPostUri string Optional

No description available.

updatedAt string datetime Required

An RFC 3339 formatted timestamp.

View raw schema
{
  "type": "object",
  "required": [
    "id",
    "kind",
    "actor",
    "reactionCount",
    "replyCount",
    "readAt",
    "createdAt",
    "updatedAt",
    "isMutualTrust"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "kind": {
      "enum": [
        "post_engagement",
        "follow",
        "trust"
      ],
      "type": "string"
    },
    "actor": {
      "ref": "social.smallbury.defs#actorView",
      "type": "ref"
    },
    "readAt": {
      "type": "string",
      "format": "datetime"
    },
    "createdAt": {
      "type": "string",
      "format": "datetime"
    },
    "updatedAt": {
      "type": "string",
      "format": "datetime"
    },
    "replyCount": {
      "type": "integer",
      "minimum": 0
    },
    "isMutualTrust": {
      "type": "boolean"
    },
    "reactionCount": {
      "type": "integer",
      "minimum": 0
    },
    "subjectPostUri": {
      "type": "string"
    }
  }
}

Lexicon Garden

@