API ReferenceEndpoints
Notification Endpoints
Manage user notification inbox and read state.
Notification endpoints expose in-app activity feeds and read/unread updates.
GET
/api/v1/notificationscurl -H "Authorization: Bearer $TOKEN" https://api.sureshake.com/api/v1/notifications
const notifRes = await fetch('https://api.sureshake.com/api/v1/notifications', {
headers: { Authorization: `Bearer ${token}` },
});
const notifications = await notifRes.json();Common operations:
- Retrieve user notifications.
- Mark items read/unread.
- Archive or clear notification history.