notifications
notifications
Page 10 of 84.
Overview
-
User #217 system System notification
9/4/2025, 6:18:20 PM
View record -
User #83 mention Nikko Kuhlman mentioned you in a post
12/4/2025, 12:54:04 PM
View record -
User #52 like Amina King liked your post
8/26/2025, 11:08:15 AM
View record -
User #228 reply Lenny Howe replied to your comment
12/15/2025, 9:06:06 PM
View record -
User #62 system System notification
10/11/2025, 1:58:12 AM
View record -
User #89 system System notification
7/24/2025, 1:41:21 PM
View record -
User #208 mention Alvena Emmerich mentioned you in a post
8/16/2025, 12:54:52 AM
View record -
User #144 mention Aaron Fritsch mentioned you in a post
12/1/2025, 11:10:11 AM
View record -
User #132 follow Theresia Collins started following you
9/13/2025, 5:45:15 PM
View record -
User #45 like Carroll Wisozk liked your post
4/24/2026, 7:25:08 AM
View record -
User #225 like Sarah West liked your post
2/13/2026, 9:13:15 PM
View record -
User #38 follow Era Mitchell started following you
4/11/2026, 10:50:42 AM
View record -
User #171 follow Jamil Mayer started following you
4/29/2026, 9:34:02 AM
View record -
User #221 mention Charlene Roberts mentioned you in a post
6/15/2025, 9:42:46 AM
View record -
User #220 mention Minerva Hettinger mentioned you in a post
3/29/2026, 8:32:51 PM
View record -
User #114 mention Zachariah Herzog mentioned you in a post
5/13/2026, 5:00:50 PM
View record -
User #14 mention Fritz Skiles mentioned you in a post
1/19/2026, 9:26:18 PM
View record -
User #28 like Simeon Robel liked your post
4/26/2026, 7:26:55 PM
View record -
User #117 system System notification
10/4/2025, 3:15:16 PM
View record -
User #101 reply Alexander Beahan replied to your comment
11/12/2025, 6:23:07 PM
View record -
User #249 follow Ressie Howell-Hodkiewicz started following you
6/19/2025, 12:18:43 PM
View record -
User #191 like Maymie Boehm liked your post
3/6/2026, 11:00:34 AM
View record -
User #27 follow Alexander Beahan started following you
3/22/2026, 3:44:24 PM
View record -
User #184 reply Amina King replied to your comment
9/13/2025, 6:46:29 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": 217,
"userId": 217,
"type": "system",
"title": "System notification",
"body": "Taedium anser valetudo cavus tres veniam catena voluptatibus abscido vespillo.",
"isRead": false,
"link": null,
"createdAt": "2025-09-04T18:18:20.713Z"
},
{
"id": 218,
"userId": 83,
"type": "mention",
"title": "Nikko Kuhlman mentioned you in a post",
"body": "Dolorum defaeco adflicto umerus.",
"isRead": false,
"link": "https://example.com/mention/YWWvgBb-",
"createdAt": "2025-12-04T12:54:04.054Z"
},
{
"id": 219,
"userId": 52,
"type": "like",
"title": "Amina King liked your post",
"body": "Verus aliquam attonbitus labore tricesimus.",
"isRead": true,
"link": "https://example.com/like/a1S_qPkl",
"createdAt": "2025-08-26T11:08:15.530Z"
}
],
"meta": {
"page": 10,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=10&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=11&limit=24",
"prev": "/api/v1/notifications?page=9&limit=24"
}
}