notifications
notifications
Page 53 of 84.
Overview
-
User #51 like Tiara Wilderman liked your post
4/15/2026, 3:30:37 AM
View record -
User #16 follow Earlene Wisozk started following you
11/18/2025, 1:47:24 PM
View record -
User #111 mention Wendy Borer mentioned you in a post
11/15/2025, 4:37:22 PM
View record -
User #48 system System notification
8/3/2025, 3:49:07 PM
View record -
User #97 reply Alex Lang replied to your comment
8/28/2025, 5:06:14 AM
View record -
User #62 system System notification
3/7/2026, 2:45:34 PM
View record -
User #199 system System notification
8/17/2025, 8:11:57 PM
View record -
User #195 system System notification
8/19/2025, 12:39:56 PM
View record -
User #101 like Consuelo Borer liked your post
11/14/2025, 5:58:27 AM
View record -
User #74 reply Wade Upton replied to your comment
1/24/2026, 1:31:49 AM
View record -
User #28 like Brycen Bayer liked your post
8/7/2025, 7:09:02 PM
View record -
User #104 reply Oliver Mitchell replied to your comment
3/30/2026, 5:10:04 PM
View record -
User #78 follow Kaden Brekke started following you
2/23/2026, 3:47:33 PM
View record -
User #155 mention Era Mitchell mentioned you in a post
6/9/2025, 8:58:22 AM
View record -
User #142 mention Beau Stiedemann mentioned you in a post
7/28/2025, 1:15:30 AM
View record -
User #181 like General Morissette liked your post
4/27/2026, 12:19:19 AM
View record -
User #1 reply Amparo Dietrich replied to your comment
1/4/2026, 2:50:22 AM
View record -
User #127 system System notification
9/30/2025, 1:11:03 PM
View record -
User #66 reply Audreanne Will replied to your comment
7/2/2025, 10:25:54 PM
View record -
User #71 reply Amya Powlowski replied to your comment
1/20/2026, 8:28:40 AM
View record -
User #106 mention Talon Turner mentioned you in a post
2/9/2026, 5:07:44 AM
View record -
User #103 reply Bradford Doyle replied to your comment
7/17/2025, 1:31:48 AM
View record -
User #219 mention Charlene Roberts mentioned you in a post
5/29/2025, 9:30:48 PM
View record -
User #230 follow Rosella Homenick started following you
8/20/2025, 2:17:05 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": 1249,
"userId": 51,
"type": "like",
"title": "Tiara Wilderman liked your post",
"body": "Decet vitium cavus triduana confugo laborum coniecto vetus tamen voluptatum.",
"isRead": false,
"link": null,
"createdAt": "2026-04-15T03:30:37.757Z"
},
{
"id": 1250,
"userId": 16,
"type": "follow",
"title": "Earlene Wisozk started following you",
"body": "Clamo thymbra decerno quisquam alii solvo commodi curvo ante apparatus.",
"isRead": false,
"link": null,
"createdAt": "2025-11-18T13:47:24.185Z"
},
{
"id": 1251,
"userId": 111,
"type": "mention",
"title": "Wendy Borer mentioned you in a post",
"body": "Vito excepturi aedificium voco.",
"isRead": true,
"link": "https://example.com/mention/Yq7zB7EI",
"createdAt": "2025-11-15T16:37:22.819Z"
}
],
"meta": {
"page": 53,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=53&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=54&limit=24",
"prev": "/api/v1/notifications?page=52&limit=24"
}
}