notifications
notifications
Page 80 of 84.
Overview
-
User #249 system System notification
6/3/2025, 8:38:21 PM
View record -
User #97 follow Charlene Kuhic started following you
10/29/2025, 7:29:52 AM
View record -
User #70 follow Kamryn Rogahn started following you
1/3/2026, 1:59:33 PM
View record -
User #137 mention Cindy Barrows mentioned you in a post
8/4/2025, 1:56:40 PM
View record -
User #171 like Diana Murazik liked your post
12/18/2025, 8:13:15 PM
View record -
User #155 follow Van Crona started following you
1/26/2026, 7:37:16 AM
View record -
User #93 mention Trace Witting-Stamm mentioned you in a post
3/14/2026, 4:22:42 PM
View record -
User #76 system System notification
11/10/2025, 3:56:09 AM
View record -
User #232 system System notification
3/10/2026, 6:45:50 AM
View record -
User #122 reply Roma Durgan replied to your comment
6/3/2025, 3:29:06 AM
View record -
User #231 mention Minerva Hettinger mentioned you in a post
3/12/2026, 6:56:00 PM
View record -
User #40 like Monte Botsford liked your post
8/12/2025, 10:37:52 AM
View record -
User #166 mention Rickie Sporer mentioned you in a post
5/6/2026, 9:44:22 PM
View record -
User #108 system System notification
10/27/2025, 12:24:21 AM
View record -
User #68 reply Gerda Streich replied to your comment
11/5/2025, 4:15:28 PM
View record -
User #30 follow General Morissette started following you
4/3/2026, 3:23:35 AM
View record -
User #181 system System notification
8/2/2025, 5:53:06 AM
View record -
User #173 system System notification
8/9/2025, 11:25:56 PM
View record -
User #27 mention Gavin Lowe mentioned you in a post
11/18/2025, 1:07:49 AM
View record -
User #100 mention Vincenza Zemlak-Collier mentioned you in a post
10/31/2025, 1:36:46 PM
View record -
User #152 like Rupert Lebsack liked your post
6/3/2025, 3:57:09 PM
View record -
User #60 reply Alex Lang replied to your comment
3/21/2026, 7:27:40 AM
View record -
User #54 reply Lazaro Herzog replied to your comment
12/26/2025, 6:32:37 AM
View record -
User #63 reply Alanna Kilback replied to your comment
7/7/2025, 5:28:56 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": 1897,
"userId": 249,
"type": "system",
"title": "System notification",
"body": "Tabula mollitia aegrotatio.",
"isRead": false,
"link": null,
"createdAt": "2025-06-03T20:38:21.317Z"
},
{
"id": 1898,
"userId": 97,
"type": "follow",
"title": "Charlene Kuhic started following you",
"body": "Ratione exercitationem voluptatibus voluptatem decens accusantium talis.",
"isRead": true,
"link": "https://example.com/follow/Whrd3x8k",
"createdAt": "2025-10-29T07:29:52.774Z"
},
{
"id": 1899,
"userId": 70,
"type": "follow",
"title": "Kamryn Rogahn started following you",
"body": "Universe suscipio vulnus dicta congregatio vero necessitatibus amoveo.",
"isRead": true,
"link": "https://example.com/follow/JIJnMUSm",
"createdAt": "2026-01-03T13:59:33.657Z"
}
],
"meta": {
"page": 80,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=80&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=81&limit=24",
"prev": "/api/v1/notifications?page=79&limit=24"
}
}