notifications
notifications
Page 28 of 84.
Overview
-
User #113 follow Jaylon Conroy started following you
2/7/2026, 3:02:53 PM
View record -
User #225 reply Karlee Hudson-Turner replied to your comment
4/19/2026, 2:43:33 PM
View record -
User #177 mention Cruz Okuneva mentioned you in a post
11/24/2025, 3:18:24 AM
View record -
User #131 like Roma Durgan liked your post
5/22/2025, 4:32:15 AM
View record -
User #203 like Charity Crona liked your post
1/4/2026, 6:08:01 AM
View record -
User #98 follow Rosina Larkin started following you
8/31/2025, 5:06:44 PM
View record -
User #185 reply Maymie Boehm replied to your comment
10/11/2025, 3:24:54 AM
View record -
User #76 system System notification
7/20/2025, 5:04:51 PM
View record -
User #104 system System notification
5/12/2026, 4:11:49 PM
View record -
User #96 reply Terence Lemke replied to your comment
12/17/2025, 8:17:27 AM
View record -
User #166 mention Jensen Bashirian mentioned you in a post
10/2/2025, 6:28:32 PM
View record -
User #198 mention Amya Powlowski mentioned you in a post
11/28/2025, 9:59:21 AM
View record -
User #221 like Wade Upton liked your post
11/1/2025, 4:46:10 PM
View record -
User #187 follow Vincenza Zemlak-Collier started following you
11/20/2025, 1:47:02 AM
View record -
User #176 system System notification
7/8/2025, 7:52:43 PM
View record -
User #119 follow Lamar Wilkinson started following you
1/24/2026, 7:11:05 PM
View record -
User #63 mention Lavonne Schmidt mentioned you in a post
2/25/2026, 9:20:48 AM
View record -
User #233 system System notification
8/2/2025, 9:11:33 PM
View record -
User #166 follow Karlee MacGyver started following you
1/5/2026, 10:41:29 AM
View record -
User #137 mention Darian Schaden mentioned you in a post
3/20/2026, 4:34:08 PM
View record -
User #102 system System notification
12/21/2025, 7:38:04 AM
View record -
User #84 mention Zachariah Herzog mentioned you in a post
2/27/2026, 4:30:58 AM
View record -
User #214 follow Hortense Cruickshank started following you
6/4/2025, 8:56:04 AM
View record -
User #120 system System notification
7/26/2025, 3:20:51 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": 649,
"userId": 113,
"type": "follow",
"title": "Jaylon Conroy started following you",
"body": "Cruciamentum denuo demitto.",
"isRead": true,
"link": "https://example.com/follow/c5RnMiYY",
"createdAt": "2026-02-07T15:02:53.096Z"
},
{
"id": 650,
"userId": 225,
"type": "reply",
"title": "Karlee Hudson-Turner replied to your comment",
"body": "Quis traho demergo denego cupiditate placeat reiciendis virga benevolentia.",
"isRead": true,
"link": "https://example.com/reply/Hpo96Qg8",
"createdAt": "2026-04-19T14:43:33.945Z"
},
{
"id": 651,
"userId": 177,
"type": "mention",
"title": "Cruz Okuneva mentioned you in a post",
"body": "Atrocitas clam voluptatem cernuus tripudio chirographum commodi eveniet.",
"isRead": true,
"link": null,
"createdAt": "2025-11-24T03:18:24.039Z"
}
],
"meta": {
"page": 28,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=28&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=29&limit=24",
"prev": "/api/v1/notifications?page=27&limit=24"
}
}