notifications
notifications
Page 20 of 84.
Overview
-
User #191 reply Stephan Heller replied to your comment
3/18/2026, 11:35:54 AM
View record -
User #156 system System notification
1/26/2026, 3:56:42 AM
View record -
User #158 mention Simeon Robel mentioned you in a post
3/3/2026, 3:16:14 PM
View record -
User #192 reply Conner Bernhard replied to your comment
9/5/2025, 4:39:45 AM
View record -
User #77 mention Guy Christiansen mentioned you in a post
11/15/2025, 3:32:43 AM
View record -
User #199 like Ryan Conroy liked your post
12/14/2025, 6:05:38 AM
View record -
User #141 like Charity Crona liked your post
7/12/2025, 10:09:53 AM
View record -
User #40 system System notification
4/29/2026, 4:21:09 AM
View record -
User #109 mention Eveline Emard mentioned you in a post
1/18/2026, 10:59:17 PM
View record -
User #167 system System notification
5/27/2025, 3:50:34 AM
View record -
User #141 reply Kamryn Rogahn replied to your comment
6/16/2025, 4:30:12 PM
View record -
User #3 like Charity Crona liked your post
12/30/2025, 11:22:45 AM
View record -
User #24 system System notification
10/31/2025, 6:16:04 PM
View record -
User #141 system System notification
5/14/2026, 10:01:02 PM
View record -
User #184 mention Stephan Heller mentioned you in a post
12/17/2025, 3:04:55 AM
View record -
User #228 mention Roma Durgan mentioned you in a post
6/20/2025, 3:52:17 AM
View record -
User #194 follow Wiley Rodriguez started following you
8/3/2025, 1:04:32 AM
View record -
User #73 mention Amya Powlowski mentioned you in a post
10/22/2025, 11:06:34 PM
View record -
User #121 follow Cyril Frami started following you
1/2/2026, 1:02:03 AM
View record -
User #36 mention Era Mitchell mentioned you in a post
5/31/2025, 6:10:55 AM
View record -
User #219 system System notification
7/23/2025, 4:19:37 AM
View record -
User #2 follow Jonathan Howe started following you
6/13/2025, 8:40:11 PM
View record -
User #232 mention Cassidy Price-Schimmel mentioned you in a post
4/16/2026, 1:39:57 AM
View record -
User #111 follow Jewell Olson started following you
12/5/2025, 9:53:57 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": 457,
"userId": 191,
"type": "reply",
"title": "Stephan Heller replied to your comment",
"body": "Atque censura in thema sollicito.",
"isRead": true,
"link": "https://example.com/reply/XaWRYr_o",
"createdAt": "2026-03-18T11:35:54.858Z"
},
{
"id": 458,
"userId": 156,
"type": "system",
"title": "System notification",
"body": "Spiculum vinco utilis.",
"isRead": false,
"link": null,
"createdAt": "2026-01-26T03:56:42.484Z"
},
{
"id": 459,
"userId": 158,
"type": "mention",
"title": "Simeon Robel mentioned you in a post",
"body": "Creator sit arceo.",
"isRead": true,
"link": "https://example.com/mention/jnSKsteP",
"createdAt": "2026-03-03T15:16:14.831Z"
}
],
"meta": {
"page": 20,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=20&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=21&limit=24",
"prev": "/api/v1/notifications?page=19&limit=24"
}
}