notifications
notifications
Page 43 of 84.
Overview
-
User #106 follow Ismael Ward started following you
6/24/2025, 5:07:42 PM
View record -
User #194 reply Autumn Bartell replied to your comment
3/22/2026, 4:17:00 PM
View record -
User #236 follow Gwendolyn Wyman started following you
12/7/2025, 5:39:31 PM
View record -
User #196 follow Earlene Wisozk started following you
10/12/2025, 11:16:02 PM
View record -
User #42 mention Maryam Kunze mentioned you in a post
11/27/2025, 8:00:46 PM
View record -
User #201 system System notification
3/31/2026, 2:38:05 AM
View record -
User #42 system System notification
4/13/2026, 2:47:53 AM
View record -
User #47 like Niko Wisozk liked your post
12/29/2025, 1:41:45 AM
View record -
User #165 mention Zachariah Herzog mentioned you in a post
7/30/2025, 3:06:55 PM
View record -
User #66 mention Amina King mentioned you in a post
12/9/2025, 1:24:35 PM
View record -
User #56 mention Jamal Gerhold mentioned you in a post
6/13/2025, 12:33:53 AM
View record -
User #128 mention Americo Hoppe mentioned you in a post
6/29/2025, 8:51:27 AM
View record -
User #67 mention Rosemary Krajcik mentioned you in a post
9/14/2025, 10:38:26 AM
View record -
User #173 follow Diana Murazik started following you
6/21/2025, 8:08:22 PM
View record -
User #187 mention Mia Renner mentioned you in a post
1/2/2026, 6:18:30 AM
View record -
User #135 system System notification
8/27/2025, 1:07:04 AM
View record -
User #128 follow Ismael Ward started following you
5/9/2026, 1:19:10 PM
View record -
User #59 system System notification
2/3/2026, 2:13:53 PM
View record -
User #9 follow Jamal Gerhold started following you
11/24/2025, 12:12:47 PM
View record -
User #74 follow Dovie Gorczany started following you
3/16/2026, 6:58:37 PM
View record -
User #81 follow Lamont Huel started following you
8/27/2025, 12:51:17 PM
View record -
User #211 reply Malvina Ortiz replied to your comment
6/23/2025, 1:25:37 PM
View record -
User #222 reply Jameson Considine replied to your comment
3/30/2026, 1:14:58 PM
View record -
User #185 like Roberta Mueller-Yundt liked your post
10/24/2025, 11:19:37 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": 1009,
"userId": 106,
"type": "follow",
"title": "Ismael Ward started following you",
"body": "Terreo amo ipsam vomito audacia ago cogito centum.",
"isRead": true,
"link": "https://example.com/follow/I8RvNte2",
"createdAt": "2025-06-24T17:07:42.533Z"
},
{
"id": 1010,
"userId": 194,
"type": "reply",
"title": "Autumn Bartell replied to your comment",
"body": "Agnitio utor corrumpo cursus virtus degenero totus vilitas.",
"isRead": true,
"link": null,
"createdAt": "2026-03-22T16:17:00.117Z"
},
{
"id": 1011,
"userId": 236,
"type": "follow",
"title": "Gwendolyn Wyman started following you",
"body": "Tyrannus triduana ante.",
"isRead": false,
"link": "https://example.com/follow/5r0GSw4w",
"createdAt": "2025-12-07T17:39:31.189Z"
}
],
"meta": {
"page": 43,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=43&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=44&limit=24",
"prev": "/api/v1/notifications?page=42&limit=24"
}
}