notifications
notifications
Page 57 of 84.
Overview
-
User #219 mention Webster Skiles mentioned you in a post
3/10/2026, 5:22:00 PM
View record -
User #152 reply Gavin Lowe replied to your comment
8/28/2025, 6:13:27 PM
View record -
User #40 follow Earlene Wisozk started following you
7/14/2025, 8:16:03 PM
View record -
User #154 system System notification
4/4/2026, 12:05:05 AM
View record -
User #167 system System notification
5/25/2025, 11:31:23 PM
View record -
User #169 system System notification
12/19/2025, 4:15:55 PM
View record -
User #145 system System notification
5/4/2026, 4:06:24 AM
View record -
User #202 like Adan Weber liked your post
1/27/2026, 5:33:04 AM
View record -
User #143 follow Lilla Koss started following you
2/10/2026, 6:06:35 AM
View record -
User #59 follow Santa Corwin started following you
2/5/2026, 6:01:42 AM
View record -
User #195 follow Lamar Wilkinson started following you
3/17/2026, 8:23:14 AM
View record -
User #144 follow Gerda Streich started following you
9/8/2025, 12:34:31 PM
View record -
User #238 reply Cassidy Price-Schimmel replied to your comment
5/16/2026, 8:33:53 PM
View record -
User #204 like Adelia Roberts liked your post
3/18/2026, 11:40:47 AM
View record -
User #229 follow Jennifer Hoeger started following you
12/8/2025, 6:46:30 AM
View record -
User #219 mention Trace Witting-Stamm mentioned you in a post
3/29/2026, 5:47:42 AM
View record -
User #163 system System notification
6/12/2025, 6:07:02 PM
View record -
User #219 follow Kevon Dickinson started following you
9/2/2025, 8:44:43 PM
View record -
User #59 mention Lennie Dickinson mentioned you in a post
1/3/2026, 6:18:23 AM
View record -
User #56 follow Lawrence Rogahn started following you
8/6/2025, 11:58:30 AM
View record -
User #248 follow Nikolas Wolf started following you
2/5/2026, 11:29:56 AM
View record -
User #104 mention Cassidy Christiansen mentioned you in a post
7/10/2025, 9:23:17 AM
View record -
User #49 reply Aylin Sanford replied to your comment
2/9/2026, 7:28:59 PM
View record -
User #163 follow Maximus Bosco started following you
1/7/2026, 12:49:09 PM
View record
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/notifications?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/notifications.d.ts https://example-data.com/types/notifications.d.ts
import type { Notification, ListEnvelope } from "./types/notifications";
const res = await fetch(
"https://example-data.com/api/v1/notifications?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Notification>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 1345,
"userId": 219,
"type": "mention",
"title": "Webster Skiles mentioned you in a post",
"body": "Summisse depopulo quaerat ambulo coaegresco vinco.",
"isRead": false,
"link": null,
"createdAt": "2026-03-10T17:22:00.135Z"
},
{
"id": 1346,
"userId": 152,
"type": "reply",
"title": "Gavin Lowe replied to your comment",
"body": "Deorsum laborum officiis.",
"isRead": true,
"link": null,
"createdAt": "2025-08-28T18:13:27.026Z"
},
{
"id": 1347,
"userId": 40,
"type": "follow",
"title": "Earlene Wisozk started following you",
"body": "Super amor succurro aliqua velociter ratione comitatus cito adflicto arcus.",
"isRead": true,
"link": "https://example.com/follow/pTYJVgiE",
"createdAt": "2025-07-14T20:16:03.389Z"
}
],
"meta": {
"page": 57,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=57&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=58&limit=24",
"prev": "/api/v1/notifications?page=56&limit=24"
}
}