app.bivri.notif.getNotifications

lexicons.bivri.app

Documentation

main query

No description available.

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",
        "default": 50,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string"
      }
    }
  }
}
notificationView object

No description available.

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

id integer Required

No description available.

indexedAt string datetime Required

An RFC 3339 formatted timestamp.

isRead boolean Required

No description available.

reason string Required

No description available.

Known values: like, comment, follow
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",
    "reason",
    "isRead",
    "sender",
    "createdAt",
    "indexedAt"
  ],
  "properties": {
    "id": {
      "type": "integer"
    },
    "isRead": {
      "type": "boolean"
    },
    "reason": {
      "type": "string",
      "knownValues": [
        "like",
        "comment",
        "follow"
      ]
    },
    "sender": {
      "ref": "app.bivri.actor.defs#profileView",
      "type": "ref"
    },
    "createdAt": {
      "type": "string",
      "format": "datetime"
    },
    "indexedAt": {
      "type": "string",
      "format": "datetime"
    },
    "subjectUri": {
      "type": "string",
      "format": "at-uri"
    }
  }
}

Lexicon Garden

@