notifications
notifications
Page 24 of 84.
Overview
-
User #144 follow Daisy Kuhic started following you
7/27/2025, 5:30:21 AM
View record -
User #107 follow Oran Torphy started following you
4/27/2026, 5:14:26 PM
View record -
User #191 follow Leora Doyle started following you
5/14/2026, 8:55:39 PM
View record -
User #20 follow Hilda Crooks started following you
2/24/2026, 6:14:33 AM
View record -
User #30 system System notification
9/24/2025, 12:27:53 AM
View record -
User #38 like Douglas Frami liked your post
4/17/2026, 10:08:12 PM
View record -
User #27 reply Candace Mueller replied to your comment
1/22/2026, 12:20:31 PM
View record -
User #160 mention Jameson Considine mentioned you in a post
8/15/2025, 1:26:55 PM
View record -
User #71 mention Carroll Wisozk mentioned you in a post
5/28/2025, 1:47:18 AM
View record -
User #44 follow Conner Bernhard started following you
8/31/2025, 5:25:38 PM
View record -
User #190 reply General Morissette replied to your comment
12/21/2025, 7:24:50 PM
View record -
User #246 reply Myrtie Daniel replied to your comment
2/22/2026, 7:45:41 PM
View record -
User #141 system System notification
6/24/2025, 3:22:54 AM
View record -
User #249 mention Karlee Hudson-Turner mentioned you in a post
7/24/2025, 7:38:56 PM
View record -
User #59 like Jamil Mayer liked your post
12/17/2025, 8:24:27 AM
View record -
User #114 mention Earlene Wisozk mentioned you in a post
1/18/2026, 6:48:22 PM
View record -
User #10 follow Van Crona started following you
4/24/2026, 11:43:21 PM
View record -
User #60 mention Jaylon Conroy mentioned you in a post
3/5/2026, 9:53:58 PM
View record -
User #113 follow Perry Kerluke started following you
10/8/2025, 8:18:36 AM
View record -
User #15 like Wendy Borer liked your post
5/24/2025, 2:18:13 AM
View record -
User #39 system System notification
8/10/2025, 2:38:45 AM
View record -
User #185 reply Lacy Gusikowski replied to your comment
1/16/2026, 2:41:12 PM
View record -
User #92 system System notification
8/23/2025, 4:41:38 AM
View record -
User #110 follow Lazaro Rath started following you
7/30/2025, 7:51:45 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": 553,
"userId": 144,
"type": "follow",
"title": "Daisy Kuhic started following you",
"body": "Cito ago conculco cum ipsam saepe caput thesaurus caelestis tremo.",
"isRead": false,
"link": "https://example.com/follow/z9FPg0hc",
"createdAt": "2025-07-27T05:30:21.424Z"
},
{
"id": 554,
"userId": 107,
"type": "follow",
"title": "Oran Torphy started following you",
"body": "Vulgus conitor cervus aptus callide beatae accommodo vilicus totidem.",
"isRead": true,
"link": "https://example.com/follow/sp8Ny6zm",
"createdAt": "2026-04-27T17:14:26.310Z"
},
{
"id": 555,
"userId": 191,
"type": "follow",
"title": "Leora Doyle started following you",
"body": "Ad adamo volubilis.",
"isRead": true,
"link": "https://example.com/follow/bZ5q2fM5",
"createdAt": "2026-05-14T20:55:39.693Z"
}
],
"meta": {
"page": 24,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=24&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=25&limit=24",
"prev": "/api/v1/notifications?page=23&limit=24"
}
}