notifications
notifications
Page 25 of 84.
Overview
-
User #81 follow Casimir Smitham started following you
2/15/2026, 1:11:15 AM
View record -
User #37 system System notification
11/20/2025, 1:07:44 PM
View record -
User #137 follow Lazaro Rath started following you
5/1/2026, 3:35:07 AM
View record -
User #100 system System notification
8/17/2025, 9:37:55 AM
View record -
User #215 reply Rubye Emmerich replied to your comment
10/27/2025, 2:13:03 PM
View record -
User #90 reply Allan Buckridge replied to your comment
10/19/2025, 4:23:58 PM
View record -
User #81 mention Alanna Kilback mentioned you in a post
1/7/2026, 8:33:25 AM
View record -
User #74 follow Melvina Reilly started following you
1/2/2026, 3:02:41 AM
View record -
User #141 mention Tillman Breitenberg mentioned you in a post
5/20/2026, 1:05:06 PM
View record -
User #250 reply Santa Corwin replied to your comment
7/28/2025, 7:13:48 PM
View record -
User #58 reply Simeon Robel replied to your comment
12/5/2025, 7:18:46 AM
View record -
User #215 mention Beau Stiedemann mentioned you in a post
10/24/2025, 5:35:18 AM
View record -
User #20 follow Clementine Nicolas started following you
12/13/2025, 9:55:06 PM
View record -
User #120 follow Niko Wisozk started following you
6/22/2025, 5:16:08 PM
View record -
User #204 follow Maximus Bosco started following you
10/25/2025, 1:49:33 PM
View record -
User #112 reply Maximus Bosco replied to your comment
3/12/2026, 4:13:25 AM
View record -
User #46 mention Jonathan Howe mentioned you in a post
6/9/2025, 2:23:45 AM
View record -
User #82 follow Florencio Mohr started following you
11/6/2025, 1:42:53 PM
View record -
User #20 mention Mathilde Ziemann-Nienow mentioned you in a post
2/16/2026, 12:18:03 AM
View record -
User #18 mention Sonia Nolan mentioned you in a post
3/22/2026, 1:40:26 AM
View record -
User #149 system System notification
7/8/2025, 6:45:54 AM
View record -
User #2 follow Douglas Frami started following you
10/29/2025, 12:27:53 PM
View record -
User #110 reply Pinkie Denesik replied to your comment
1/30/2026, 9:49:12 PM
View record -
User #56 follow Rubye Emmerich started following you
9/14/2025, 7:30:01 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": 577,
"userId": 81,
"type": "follow",
"title": "Casimir Smitham started following you",
"body": "Surculus delicate denego architecto.",
"isRead": true,
"link": "https://example.com/follow/dZpLspXp",
"createdAt": "2026-02-15T01:11:15.512Z"
},
{
"id": 578,
"userId": 37,
"type": "system",
"title": "System notification",
"body": "Admitto recusandae vis curriculum stultus suspendo.",
"isRead": true,
"link": "https://example.com/system/74VEm74t",
"createdAt": "2025-11-20T13:07:44.115Z"
},
{
"id": 579,
"userId": 137,
"type": "follow",
"title": "Lazaro Rath started following you",
"body": "Illum viridis bestia nemo.",
"isRead": false,
"link": "https://example.com/follow/p70r23fm",
"createdAt": "2026-05-01T03:35:07.196Z"
}
],
"meta": {
"page": 25,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=25&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=26&limit=24",
"prev": "/api/v1/notifications?page=24&limit=24"
}
}