notifications
notifications
Page 13 of 84.
Overview
-
User #131 system System notification
3/27/2026, 8:31:26 PM
View record -
User #54 mention Rubye Emmerich mentioned you in a post
8/20/2025, 7:00:31 AM
View record -
User #18 system System notification
6/2/2025, 3:23:25 PM
View record -
User #29 like Kaden Brekke liked your post
8/13/2025, 7:19:26 PM
View record -
User #219 reply Wallace Batz replied to your comment
3/30/2026, 4:28:47 AM
View record -
User #130 system System notification
5/23/2025, 9:31:26 AM
View record -
User #49 follow Allan Buckridge started following you
4/4/2026, 8:57:09 AM
View record -
User #51 reply Glenna Keebler replied to your comment
6/13/2025, 4:36:54 AM
View record -
User #186 system System notification
5/9/2026, 11:47:38 AM
View record -
User #152 like Esperanza Casper liked your post
11/29/2025, 1:05:56 AM
View record -
User #141 follow Rosella Homenick started following you
1/6/2026, 8:45:45 AM
View record -
User #240 mention Einar Volkman mentioned you in a post
10/30/2025, 2:45:50 PM
View record -
User #145 mention Brock Hackett mentioned you in a post
11/28/2025, 9:44:07 PM
View record -
User #27 reply Guy Christiansen replied to your comment
8/9/2025, 7:20:03 PM
View record -
User #178 follow Clyde Bernier-Gleason started following you
8/10/2025, 11:34:46 PM
View record -
User #8 follow Nikko Kuhlman started following you
12/11/2025, 7:02:19 PM
View record -
User #31 like Telly Sanford liked your post
6/18/2025, 4:27:35 PM
View record -
User #229 follow Einar Volkman started following you
5/25/2025, 8:26:14 AM
View record -
User #6 like Camron O'Conner liked your post
1/18/2026, 11:11:29 PM
View record -
User #55 follow Clementine Nicolas started following you
10/30/2025, 7:19:30 PM
View record -
User #206 follow Cassidy Price-Schimmel started following you
4/20/2026, 3:21:18 AM
View record -
User #54 mention Autumn Bartell mentioned you in a post
7/10/2025, 6:18:40 AM
View record -
User #40 like Charity Crona liked your post
6/8/2025, 7:25:48 PM
View record -
User #79 like Jadon Nicolas liked your post
5/11/2026, 10:04:04 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": 289,
"userId": 131,
"type": "system",
"title": "System notification",
"body": "Adinventitias terror magni.",
"isRead": false,
"link": "https://example.com/system/_hi7P-Ee",
"createdAt": "2026-03-27T20:31:26.236Z"
},
{
"id": 290,
"userId": 54,
"type": "mention",
"title": "Rubye Emmerich mentioned you in a post",
"body": "Ascit nemo decerno cohaero sortitus videlicet.",
"isRead": false,
"link": "https://example.com/mention/B6ljZZF2",
"createdAt": "2025-08-20T07:00:31.316Z"
},
{
"id": 291,
"userId": 18,
"type": "system",
"title": "System notification",
"body": "Repellendus complectus crux.",
"isRead": false,
"link": null,
"createdAt": "2025-06-02T15:23:25.881Z"
}
],
"meta": {
"page": 13,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=13&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=14&limit=24",
"prev": "/api/v1/notifications?page=12&limit=24"
}
}