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)
next
string
Load the **next** page (toward older items — the "load more" direction, since feeds are ordered newest-first). Pass back the `meta.next_cursor` from a previous response.
prev
string
Load the **previous** page (toward newer items). Pass back the `meta.prev_cursor` from a previous response.
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 the newest-first feeds. `next_cursor`
limit
integer!
Maximum number of items requested.
next_cursor
string | null!
Cursor for the next (older) page. Pass it back as the `next`
prev_cursor
string | null!
Cursor for the previous (newer) page. Pass it back as the `prev`
has_more
boolean!
Whether more (older) items exist beyond this page, reachable via
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.