notifications
notifications
Page 38 of 84.
Overview
-
User #248 reply Lennie Dickinson replied to your comment
12/12/2025, 7:06:55 AM
View record -
User #164 follow Gudrun Brakus started following you
7/3/2025, 6:57:22 PM
View record -
User #81 like Ludwig Stiedemann liked your post
12/5/2025, 8:44:23 PM
View record -
User #68 like Vida Kunde-Koepp liked your post
7/30/2025, 7:41:30 PM
View record -
User #136 mention Jo Haag-Mayer mentioned you in a post
6/9/2025, 4:55:48 AM
View record -
User #140 follow Cyril Frami started following you
10/21/2025, 3:54:31 PM
View record -
User #178 like Clementine Nicolas liked your post
8/21/2025, 5:47:15 AM
View record -
User #28 reply Florencio Mohr replied to your comment
11/18/2025, 3:55:06 PM
View record -
User #82 follow Sarah West started following you
9/12/2025, 6:38:52 AM
View record -
User #152 system System notification
7/19/2025, 3:37:29 PM
View record -
User #174 reply Darian Schaden replied to your comment
8/22/2025, 8:07:57 AM
View record -
User #104 system System notification
4/5/2026, 2:21:08 PM
View record -
User #130 system System notification
3/26/2026, 4:23:09 AM
View record -
User #127 mention Mazie Douglas mentioned you in a post
1/1/2026, 10:30:36 AM
View record -
User #122 system System notification
4/28/2026, 3:58:54 PM
View record -
User #7 reply Kathleen Lynch replied to your comment
7/23/2025, 4:43:51 PM
View record -
User #183 mention Roberta Mueller-Yundt mentioned you in a post
7/7/2025, 9:35:44 PM
View record -
User #120 mention Kathleen Lynch mentioned you in a post
8/2/2025, 3:05:28 PM
View record -
User #178 like Terence Lemke liked your post
7/29/2025, 8:31:53 AM
View record -
User #113 reply Jesse Kiehn replied to your comment
11/27/2025, 3:07:03 AM
View record -
User #110 system System notification
10/9/2025, 12:32:34 PM
View record -
User #168 reply Trace Witting-Stamm replied to your comment
7/1/2025, 7:18:43 AM
View record -
User #66 mention Clementine Nicolas mentioned you in a post
6/2/2025, 3:26:59 PM
View record -
User #76 follow Oliver Mitchell started following you
1/21/2026, 6:36:12 AM
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": 889,
"userId": 248,
"type": "reply",
"title": "Lennie Dickinson replied to your comment",
"body": "Dicta cum deprimo verto sufficio auctor.",
"isRead": true,
"link": null,
"createdAt": "2025-12-12T07:06:55.727Z"
},
{
"id": 890,
"userId": 164,
"type": "follow",
"title": "Gudrun Brakus started following you",
"body": "Dolor delectatio curis repudiandae supplanto admitto tergiversatio cibus vacuus abscido.",
"isRead": false,
"link": "https://example.com/follow/F760cee1",
"createdAt": "2025-07-03T18:57:22.109Z"
},
{
"id": 891,
"userId": 81,
"type": "like",
"title": "Ludwig Stiedemann liked your post",
"body": "Voco bellicus beneficium.",
"isRead": false,
"link": "https://example.com/like/5ntSOpxX",
"createdAt": "2025-12-05T20:44:23.066Z"
}
],
"meta": {
"page": 38,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=38&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=39&limit=24",
"prev": "/api/v1/notifications?page=37&limit=24"
}
}