notifications
notifications
Page 71 of 84.
Overview
-
User #206 mention Tiara Wilderman mentioned you in a post
1/15/2026, 4:53:31 AM
View record -
User #207 system System notification
10/27/2025, 12:35:06 PM
View record -
User #242 reply Ruben Terry replied to your comment
11/29/2025, 12:39:19 PM
View record -
User #178 system System notification
2/26/2026, 6:56:40 AM
View record -
User #43 follow Lawrence Rogahn started following you
2/18/2026, 12:03:18 PM
View record -
User #36 system System notification
4/7/2026, 2:32:43 AM
View record -
User #175 follow Pinkie Denesik started following you
6/24/2025, 11:49:11 PM
View record -
User #46 system System notification
7/9/2025, 5:08:43 PM
View record -
User #127 system System notification
5/10/2026, 11:44:07 PM
View record -
User #235 like Joseph Nitzsche liked your post
8/9/2025, 5:46:10 PM
View record -
User #27 follow Lamar Wilkinson started following you
4/23/2026, 8:41:26 PM
View record -
User #45 system System notification
11/30/2025, 10:14:11 AM
View record -
User #31 mention Amari Koch mentioned you in a post
8/30/2025, 11:55:46 PM
View record -
User #172 like Webster Skiles liked your post
12/27/2025, 1:21:48 AM
View record -
User #158 follow Porter Dooley started following you
10/16/2025, 7:58:25 AM
View record -
User #109 system System notification
4/18/2026, 8:44:17 AM
View record -
User #211 reply Enos Hamill replied to your comment
10/4/2025, 7:15:31 PM
View record -
User #19 mention Frederic Armstrong mentioned you in a post
11/3/2025, 3:38:02 AM
View record -
User #155 follow Karolann Legros started following you
8/22/2025, 1:53:48 AM
View record -
User #240 mention General Morissette mentioned you in a post
9/9/2025, 7:56:54 PM
View record -
User #122 reply Cruz Okuneva replied to your comment
11/3/2025, 1:19:00 AM
View record -
User #33 follow Autumn Bartell started following you
1/25/2026, 6:51:46 AM
View record -
User #115 follow Eveline Emard started following you
5/8/2026, 9:13:58 PM
View record -
User #71 reply Autumn Bartell replied to your comment
1/8/2026, 1:45:32 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": 1681,
"userId": 206,
"type": "mention",
"title": "Tiara Wilderman mentioned you in a post",
"body": "Iure tabula conculco itaque compono aestas rem amiculum atrocitas.",
"isRead": false,
"link": "https://example.com/mention/Rfra9UjP",
"createdAt": "2026-01-15T04:53:31.753Z"
},
{
"id": 1682,
"userId": 207,
"type": "system",
"title": "System notification",
"body": "Defero textus vomer.",
"isRead": false,
"link": "https://example.com/system/OcTpTYJr",
"createdAt": "2025-10-27T12:35:06.955Z"
},
{
"id": 1683,
"userId": 242,
"type": "reply",
"title": "Ruben Terry replied to your comment",
"body": "Deporto desolo minus depopulo harum tribuo rerum desparatus.",
"isRead": false,
"link": "https://example.com/reply/rrRC7a1Z",
"createdAt": "2025-11-29T12:39:19.690Z"
}
],
"meta": {
"page": 71,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=71&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=72&limit=24",
"prev": "/api/v1/notifications?page=70&limit=24"
}
}