notifications
notifications
Page 45 of 84.
Overview
-
User #237 system System notification
11/23/2025, 1:41:26 PM
View record -
User #121 follow Pinkie Denesik started following you
11/24/2025, 11:27:24 AM
View record -
User #15 mention Marcelina Grady mentioned you in a post
3/20/2026, 9:56:28 PM
View record -
User #47 system System notification
7/22/2025, 6:16:18 AM
View record -
User #184 follow Mckenna Hegmann-Price started following you
5/11/2026, 5:13:36 AM
View record -
User #100 follow Mara Johnson started following you
4/20/2026, 2:30:35 AM
View record -
User #185 system System notification
5/6/2026, 12:28:53 AM
View record -
User #185 follow Carley Gleichner started following you
6/8/2025, 11:39:18 PM
View record -
User #212 reply Celia D'Amore replied to your comment
1/29/2026, 9:07:21 PM
View record -
User #221 reply Mckenna Hegmann-Price replied to your comment
5/21/2026, 11:23:26 PM
View record -
User #35 like Perry Kerluke liked your post
3/26/2026, 2:58:03 PM
View record -
User #15 system System notification
9/16/2025, 4:59:17 AM
View record -
User #71 system System notification
9/5/2025, 7:47:14 AM
View record -
User #150 like Roberta Mueller-Yundt liked your post
2/6/2026, 9:30:58 PM
View record -
User #15 follow Michale Hilpert started following you
12/29/2025, 9:06:27 PM
View record -
User #53 follow Jameson Considine started following you
1/30/2026, 10:18:19 AM
View record -
User #8 reply Beau Stiedemann replied to your comment
5/19/2026, 10:01:47 AM
View record -
User #187 like Rupert Lebsack liked your post
12/16/2025, 8:00:24 PM
View record -
User #184 reply Conner Bernhard replied to your comment
7/4/2025, 4:53:10 PM
View record -
User #190 follow Judy Hackett started following you
11/14/2025, 12:19:49 AM
View record -
User #185 system System notification
11/24/2025, 1:53:12 AM
View record -
User #36 follow Loren Schmidt started following you
1/30/2026, 12:03:45 AM
View record -
User #110 like Michaela Feeney liked your post
7/24/2025, 8:58:30 AM
View record -
User #140 system System notification
2/5/2026, 5:36:06 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": 1057,
"userId": 237,
"type": "system",
"title": "System notification",
"body": "Textilis sustineo delinquo numquam strenuus denique accedo comis torqueo.",
"isRead": true,
"link": "https://example.com/system/Sfo6qZmf",
"createdAt": "2025-11-23T13:41:26.940Z"
},
{
"id": 1058,
"userId": 121,
"type": "follow",
"title": "Pinkie Denesik started following you",
"body": "Consequatur varius theatrum custodia corrigo crepusculum combibo correptius quaerat.",
"isRead": true,
"link": "https://example.com/follow/z8WO6p35",
"createdAt": "2025-11-24T11:27:24.554Z"
},
{
"id": 1059,
"userId": 15,
"type": "mention",
"title": "Marcelina Grady mentioned you in a post",
"body": "Adamo cras sortitus testimonium crux trado.",
"isRead": true,
"link": null,
"createdAt": "2026-03-20T21:56:28.536Z"
}
],
"meta": {
"page": 45,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=45&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=46&limit=24",
"prev": "/api/v1/notifications?page=44&limit=24"
}
}