notifications
notifications
Page 76 of 84.
Overview
-
User #249 follow Karlee Hudson-Turner started following you
4/12/2026, 8:14:32 PM
View record -
User #11 system System notification
12/31/2025, 5:34:02 AM
View record -
User #45 mention Jamaal Rolfson mentioned you in a post
8/14/2025, 4:33:21 AM
View record -
User #158 mention Abdul Rau mentioned you in a post
8/20/2025, 9:44:22 AM
View record -
User #27 like Santa Corwin liked your post
9/14/2025, 5:27:51 AM
View record -
User #56 like Maymie Boehm liked your post
11/3/2025, 10:18:29 PM
View record -
User #149 like Cassidy Boehm liked your post
4/27/2026, 8:16:54 AM
View record -
User #86 mention Adrain Kris-Hermiston mentioned you in a post
8/1/2025, 5:07:02 PM
View record -
User #27 follow Mia Renner started following you
2/22/2026, 5:15:29 PM
View record -
User #140 follow Rosemary Krajcik started following you
4/12/2026, 10:04:10 AM
View record -
User #28 mention Ryan Conroy mentioned you in a post
1/10/2026, 4:22:33 AM
View record -
User #183 like Matilde Beahan liked your post
1/28/2026, 11:05:00 PM
View record -
User #49 reply Lilla Koss replied to your comment
11/13/2025, 8:34:41 PM
View record -
User #56 follow Hershel Smitham started following you
10/7/2025, 7:57:32 AM
View record -
User #225 system System notification
1/30/2026, 7:16:51 PM
View record -
User #199 follow Hermina West started following you
9/6/2025, 5:17:19 PM
View record -
User #83 system System notification
11/4/2025, 10:55:31 PM
View record -
User #128 follow Clyde Bernier-Gleason started following you
5/21/2026, 5:50:20 AM
View record -
User #213 follow Wendy Borer started following you
9/6/2025, 5:16:59 PM
View record -
User #117 like Rupert Lebsack liked your post
3/18/2026, 11:05:42 AM
View record -
User #134 system System notification
5/10/2026, 1:54:43 AM
View record -
User #242 like Ethyl Auer liked your post
10/25/2025, 5:09:08 PM
View record -
User #242 reply Earlene Wisozk replied to your comment
3/8/2026, 2:10:27 AM
View record -
User #247 like Kennith Hahn liked your post
8/9/2025, 12:38:10 AM
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": 1801,
"userId": 249,
"type": "follow",
"title": "Karlee Hudson-Turner started following you",
"body": "Thymbra amplexus quia.",
"isRead": true,
"link": "https://example.com/follow/x7DEOH3Q",
"createdAt": "2026-04-12T20:14:32.309Z"
},
{
"id": 1802,
"userId": 11,
"type": "system",
"title": "System notification",
"body": "Eveniet absque aranea comparo cado demum assentator totidem.",
"isRead": false,
"link": null,
"createdAt": "2025-12-31T05:34:02.566Z"
},
{
"id": 1803,
"userId": 45,
"type": "mention",
"title": "Jamaal Rolfson mentioned you in a post",
"body": "Calco tamquam viscus videlicet.",
"isRead": false,
"link": "https://example.com/mention/VmmUtYM8",
"createdAt": "2025-08-14T04:33:21.603Z"
}
],
"meta": {
"page": 76,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=76&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=77&limit=24",
"prev": "/api/v1/notifications?page=75&limit=24"
}
}