notifications
notifications
Page 6 of 84.
Overview
-
User #150 system System notification
3/13/2026, 10:04:47 AM
View record -
User #96 mention Kaleb Schmidt mentioned you in a post
6/30/2025, 6:59:59 AM
View record -
User #159 reply Jonas Rath replied to your comment
10/5/2025, 2:53:12 PM
View record -
User #13 follow Brock Hackett started following you
10/8/2025, 1:48:48 AM
View record -
User #39 reply Clementine Nicolas replied to your comment
12/1/2025, 7:32:16 PM
View record -
User #145 mention Minerva Hettinger mentioned you in a post
3/4/2026, 12:34:00 AM
View record -
User #103 reply Ethyl Auer replied to your comment
8/30/2025, 7:37:18 PM
View record -
User #136 like Lemuel Jast liked your post
2/21/2026, 10:41:29 PM
View record -
User #235 follow Simeon Heathcote started following you
5/7/2026, 4:13:45 AM
View record -
User #71 system System notification
5/3/2026, 10:31:39 PM
View record -
User #28 reply Sam Hegmann-Jast replied to your comment
6/6/2025, 3:03:56 AM
View record -
User #212 like Webster Skiles liked your post
8/25/2025, 3:44:16 PM
View record -
User #85 follow Daisy Kuhic started following you
9/23/2025, 12:58:22 AM
View record -
User #120 system System notification
12/12/2025, 11:21:56 PM
View record -
User #201 like Cayla Farrell liked your post
5/16/2026, 12:51:41 PM
View record -
User #242 system System notification
6/2/2025, 9:16:49 PM
View record -
User #59 follow Wade Upton started following you
10/11/2025, 10:30:50 PM
View record -
User #245 reply Dwight Dicki-Medhurst replied to your comment
8/6/2025, 3:40:09 AM
View record -
User #56 reply Cindy Barrows replied to your comment
8/12/2025, 6:29:21 AM
View record -
User #16 reply Pinkie Denesik replied to your comment
10/20/2025, 6:40:56 PM
View record -
User #95 system System notification
4/19/2026, 2:32:50 PM
View record -
User #111 system System notification
3/11/2026, 2:38:05 AM
View record -
User #245 reply Michaela Feeney replied to your comment
8/26/2025, 11:18:20 PM
View record -
User #211 mention Leonel Hamill mentioned you in a post
9/17/2025, 6:04:36 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": 121,
"userId": 150,
"type": "system",
"title": "System notification",
"body": "Fuga villa confido itaque.",
"isRead": false,
"link": null,
"createdAt": "2026-03-13T10:04:47.726Z"
},
{
"id": 122,
"userId": 96,
"type": "mention",
"title": "Kaleb Schmidt mentioned you in a post",
"body": "Accedo patria suggero.",
"isRead": true,
"link": null,
"createdAt": "2025-06-30T06:59:59.638Z"
},
{
"id": 123,
"userId": 159,
"type": "reply",
"title": "Jonas Rath replied to your comment",
"body": "Bardus complectus antepono sol harum agnosco utor acies cumque nulla.",
"isRead": false,
"link": null,
"createdAt": "2025-10-05T14:53:12.124Z"
}
],
"meta": {
"page": 6,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=6&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=7&limit=24",
"prev": "/api/v1/notifications?page=5&limit=24"
}
}