List unread notifications for the authenticated viewer. Requires a valid session cookie; responds 401 otherwise. Notifications are derived from indexed records (no separate notification table) and grouped by subject; a group counts as unread when its latestAt is newer than the viewer's stored readAt for that group (see ink.branchline.markNotificationsRead). Three kinds are emitted: 'continuation' (someone grew one of the viewer's buds), 'seedGrant' (someone gave the viewer a seed), and 'bookmarkGrowth' (new buds on a story the viewer bookmarked).
Parameters
No description available.
Output
Encodingapplication/json
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
Sending request...
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"notifications"
],
"properties": {
"notifications": {
"type": "array",
"items": {
"refs": [
"#continuationView",
"#seedGrantView",
"#bookmarkGrowthView"
],
"type": "union",
"closed": true
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 20,
"maximum": 50,
"minimum": 1
}
}
},
"description": "List unread notifications for the authenticated viewer. Requires a valid session cookie; responds 401 otherwise. Notifications are derived from indexed records (no separate notification table) and grouped by subject; a group counts as unread when its latestAt is newer than the viewer's stored readAt for that group (see ink.branchline.markNotificationsRead). Three kinds are emitted: 'continuation' (someone grew one of the viewer's buds), 'seedGrant' (someone gave the viewer a seed), and 'bookmarkGrowth' (new buds on a story the viewer bookmarked)."
}
No description available.
Properties
A decentralized identifier (DID).
No description available.
An AT Protocol handle (e.g., alice.bsky.social).
View raw schema
{
"type": "object",
"required": [
"did"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"handle": {
"type": "string",
"format": "handle"
},
"displayName": {
"type": "string"
}
}
}
A story the viewer bookmarked received new buds past the viewer's last dismissal.
Properties
No description available.
minimum: 1
No description available.
maxLength: 10 items
Format: 'bookmarkGrowth:{rootUri}'.
createdAt of the most recent qualifying new bud on this story.
Number of new buds since the viewer last dismissed this group (bounded for display).
minimum: 1
No description available.
Root bud AT-URI of the bookmarked story.
View raw schema
{
"type": "object",
"required": [
"groupKey",
"latestAt",
"rootUri",
"rootTitle",
"newBudCount",
"actors",
"actorCount"
],
"properties": {
"actors": {
"type": "array",
"items": {
"ref": "#actor",
"type": "ref"
},
"maxLength": 10
},
"rootUri": {
"type": "string",
"format": "at-uri",
"description": "Root bud AT-URI of the bookmarked story."
},
"groupKey": {
"type": "string",
"description": "Format: 'bookmarkGrowth:{rootUri}'."
},
"latestAt": {
"type": "string",
"format": "datetime",
"description": "createdAt of the most recent qualifying new bud on this story."
},
"rootTitle": {
"type": "string"
},
"actorCount": {
"type": "integer",
"minimum": 1
},
"newBudCount": {
"type": "integer",
"minimum": 1,
"description": "Number of new buds since the viewer last dismissed this group (bounded for display)."
}
},
"description": "A story the viewer bookmarked received new buds past the viewer's last dismissal."
}
One of the viewer's buds received at least one child bud since the group was last read.
Properties
No description available.
minimum: 1
Up to 10 unique actors who wrote qualifying child buds, most-recent actor first.
maxLength: 10 items
Stable identifier used with ink.branchline.markNotificationsRead. Format: 'continuation:{parentUri}'.
Timestamp of the most recent child bud in this group. Drives sort order.
No description available.
AT-URI of the viewer's bud that was extended.
View raw schema
{
"type": "object",
"required": [
"groupKey",
"latestAt",
"parentUri",
"parentTitle",
"actors",
"actorCount"
],
"properties": {
"actors": {
"type": "array",
"items": {
"ref": "#actor",
"type": "ref"
},
"maxLength": 10,
"description": "Up to 10 unique actors who wrote qualifying child buds, most-recent actor first."
},
"groupKey": {
"type": "string",
"description": "Stable identifier used with ink.branchline.markNotificationsRead. Format: 'continuation:{parentUri}'."
},
"latestAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp of the most recent child bud in this group. Drives sort order."
},
"parentUri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the viewer's bud that was extended."
},
"actorCount": {
"type": "integer",
"minimum": 1
},
"parentTitle": {
"type": "string"
}
},
"description": "One of the viewer's buds received at least one child bud since the group was last read."
}
Someone granted the viewer a seed.
Properties
No description available.
Format: 'seedGrant:{seedUri}'.
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
View raw schema
{
"type": "object",
"required": [
"groupKey",
"latestAt",
"seedUri",
"grantor"
],
"properties": {
"grantor": {
"ref": "#actor",
"type": "ref"
},
"seedUri": {
"type": "string",
"format": "at-uri"
},
"groupKey": {
"type": "string",
"description": "Format: 'seedGrant:{seedUri}'."
},
"latestAt": {
"type": "string",
"format": "datetime",
"description": "createdAt of the seed."
}
},
"description": "Someone granted the viewer a seed."
}