notifications
notifications
Page 52 of 84.
Overview
-
User #49 reply Jaylon Conroy replied to your comment
12/8/2025, 11:08:34 AM
View record -
User #195 follow Gerda Streich started following you
4/12/2026, 1:20:52 PM
View record -
User #57 like Myrl Pollich liked your post
2/26/2026, 7:48:34 PM
View record -
User #109 like Telly Sanford liked your post
6/21/2025, 11:59:32 AM
View record -
User #53 mention Frederic Armstrong mentioned you in a post
1/14/2026, 5:23:01 PM
View record -
User #29 mention Dasia Volkman mentioned you in a post
5/13/2026, 4:09:56 PM
View record -
User #223 reply Anne Hamill replied to your comment
8/26/2025, 11:04:31 PM
View record -
User #111 system System notification
3/20/2026, 8:32:09 PM
View record -
User #114 like Stephan Heller liked your post
9/22/2025, 10:42:34 PM
View record -
User #84 reply Consuelo Borer replied to your comment
12/25/2025, 9:23:13 PM
View record -
User #188 system System notification
8/11/2025, 6:37:41 AM
View record -
User #71 mention Alex Lang mentioned you in a post
1/30/2026, 3:06:10 PM
View record -
User #36 mention Margaretta Barrows mentioned you in a post
10/15/2025, 5:02:30 PM
View record -
User #148 mention Lamont Schroeder mentioned you in a post
6/21/2025, 12:16:40 AM
View record -
User #204 mention Maria Senger mentioned you in a post
3/14/2026, 3:04:12 AM
View record -
User #38 like Orrin Grant liked your post
9/25/2025, 2:56:38 PM
View record -
User #17 follow Cayla Farrell started following you
2/7/2026, 8:01:31 PM
View record -
User #91 like Elva Roberts liked your post
12/25/2025, 4:43:29 AM
View record -
User #8 reply Merl Jenkins replied to your comment
9/12/2025, 1:02:41 PM
View record -
User #42 like Gudrun Brakus liked your post
7/28/2025, 7:21:51 AM
View record -
User #31 system System notification
5/12/2026, 10:30:01 PM
View record -
User #34 system System notification
3/10/2026, 3:31:59 PM
View record -
User #190 follow Hortense Cruickshank started following you
4/24/2026, 4:39:47 PM
View record -
User #52 mention Della Labadie mentioned you in a post
8/9/2025, 7:29:37 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": 1225,
"userId": 49,
"type": "reply",
"title": "Jaylon Conroy replied to your comment",
"body": "Fuga in assumenda.",
"isRead": true,
"link": null,
"createdAt": "2025-12-08T11:08:34.919Z"
},
{
"id": 1226,
"userId": 195,
"type": "follow",
"title": "Gerda Streich started following you",
"body": "Tersus commemoro apud desolo sollers error bellicus centum fugit.",
"isRead": true,
"link": "https://example.com/follow/WGufiIGX",
"createdAt": "2026-04-12T13:20:52.548Z"
},
{
"id": 1227,
"userId": 57,
"type": "like",
"title": "Myrl Pollich liked your post",
"body": "Vulnero amoveo templum viscus.",
"isRead": true,
"link": null,
"createdAt": "2026-02-26T19:48:34.571Z"
}
],
"meta": {
"page": 52,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=52&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=53&limit=24",
"prev": "/api/v1/notifications?page=51&limit=24"
}
}