notifications
notifications
Page 35 of 84.
Overview
-
User #224 mention Everett Yundt mentioned you in a post
11/11/2025, 9:14:30 PM
View record -
User #109 system System notification
1/21/2026, 2:31:43 AM
View record -
User #51 system System notification
6/20/2025, 8:28:37 PM
View record -
User #9 system System notification
11/21/2025, 3:45:48 AM
View record -
User #243 mention Niko Wisozk mentioned you in a post
6/24/2025, 11:26:22 PM
View record -
User #42 follow Einar Volkman started following you
8/2/2025, 8:15:46 PM
View record -
User #129 reply Michaela Feeney replied to your comment
7/27/2025, 8:20:58 AM
View record -
User #223 mention Kevon Dickinson mentioned you in a post
3/25/2026, 3:41:23 AM
View record -
User #221 follow Amina King started following you
2/17/2026, 1:22:29 AM
View record -
User #125 mention Roosevelt Ullrich mentioned you in a post
8/3/2025, 6:49:06 AM
View record -
User #32 reply Selina Flatley replied to your comment
2/23/2026, 4:42:56 AM
View record -
User #167 follow Gavin Lowe started following you
5/17/2026, 11:16:38 PM
View record -
User #189 like Jamaal Rolfson liked your post
9/27/2025, 4:00:10 AM
View record -
User #176 system System notification
1/7/2026, 3:25:45 PM
View record -
User #195 system System notification
7/4/2025, 5:32:02 PM
View record -
User #22 follow Kaden Brekke started following you
1/19/2026, 4:16:57 PM
View record -
User #17 reply Diana Murazik replied to your comment
10/25/2025, 4:47:30 PM
View record -
User #152 follow Oran Torphy started following you
7/23/2025, 7:33:05 PM
View record -
User #140 mention Clementine Nicolas mentioned you in a post
11/30/2025, 4:54:55 PM
View record -
User #99 mention Green Kozey mentioned you in a post
6/29/2025, 12:42:23 PM
View record -
User #68 mention Alexa Rippin mentioned you in a post
12/14/2025, 8:34:18 PM
View record -
User #196 reply Edward Jacobson replied to your comment
3/12/2026, 5:52:01 PM
View record -
User #160 follow Zachariah Herzog started following you
11/17/2025, 10:52:33 AM
View record -
User #77 system System notification
1/11/2026, 10:13:43 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": 817,
"userId": 224,
"type": "mention",
"title": "Everett Yundt mentioned you in a post",
"body": "Adeptio clibanus adficio altus rem caritas vulnus tabgo confido compello.",
"isRead": true,
"link": null,
"createdAt": "2025-11-11T21:14:30.393Z"
},
{
"id": 818,
"userId": 109,
"type": "system",
"title": "System notification",
"body": "Adversus mollitia suffragium auditor.",
"isRead": false,
"link": "https://example.com/system/WJkXU_of",
"createdAt": "2026-01-21T02:31:43.594Z"
},
{
"id": 819,
"userId": 51,
"type": "system",
"title": "System notification",
"body": "Utrimque eaque acies.",
"isRead": false,
"link": "https://example.com/system/5w_UUMs6",
"createdAt": "2025-06-20T20:28:37.294Z"
}
],
"meta": {
"page": 35,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=35&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=36&limit=24",
"prev": "/api/v1/notifications?page=34&limit=24"
}
}