Returns the authenticated user's notifications feed. Each notification includes read state for the current user.

Query Params
limit
integer
Number of feed items to return (max 100)
before
string
Opaque cursor token returned as `meta.next_cursor` from a previous response. Pass it back to fetch the next page of older items.
after
string
Opaque cursor token used to page forward (newer items).
unread
string
When true, only unread notifications are returned.
GET
https://api.are.na/v3/me/notifications
Cursor-paginated notification feed response.
meta
CursorMeta!
Cursor pagination metadata for redis-backed feeds.
limit
integer!
Maximum number of items requested.
next_cursor
string | null!
Opaque cursor token to pass back as `before` for the next page,
prev_cursor
string | null!
Opaque cursor token to pass back as `after` to fetch newer items,
has_more
boolean!
Whether more items are available after this page.
data
Notification[]!
[items]
Notification
A notification feed activity with read state.
id
integer!
Unique identifier for the underlying activity.
created_at
string (date-time)!
When the activity occurred.
kind
ActivityKind!
The normalized activity kind. Encodes the actor's action and the item /
followed_userfollowed_channelfollowed_groupadded_block_to_channeladded_channel_to_channelcreated_channelcollaborating_with_user_on_channelcollaborating_with_group_on_channelcommented_on_blockmentioned_youadded_user_to_group
actor
ActivityActor!
User or group who performed the activity.
item
ActivitySubject!
target
ActivitySubject!
parent
ActivitySubject!
type
string!
Notification
is_read
boolean!
Whether the authenticated user has read this notification.