notifications
notifications
Page 63 of 84.
Overview
-
User #31 mention Brycen Bayer mentioned you in a post
3/20/2026, 9:54:25 AM
View record -
User #108 follow Antoinette Greenfelder started following you
6/22/2025, 6:48:22 PM
View record -
User #139 follow Era Mitchell started following you
4/7/2026, 10:53:49 AM
View record -
User #240 like Lawrence Rogahn liked your post
5/19/2026, 7:26:07 PM
View record -
User #186 mention Jonathan Howe mentioned you in a post
12/17/2025, 1:57:03 PM
View record -
User #214 like Clementine Nicolas liked your post
4/28/2026, 6:23:23 AM
View record -
User #218 mention Oliver Mitchell mentioned you in a post
9/17/2025, 10:53:21 PM
View record -
User #9 like Rosemary Krajcik liked your post
11/24/2025, 11:04:36 AM
View record -
User #160 system System notification
3/12/2026, 12:00:41 PM
View record -
User #55 system System notification
10/22/2025, 4:38:28 AM
View record -
User #171 like Alexander Beahan liked your post
10/13/2025, 12:26:12 PM
View record -
User #65 system System notification
11/7/2025, 8:25:00 AM
View record -
User #105 reply Ludwig Stiedemann replied to your comment
8/15/2025, 4:44:12 AM
View record -
User #174 mention Leora Doyle mentioned you in a post
7/29/2025, 12:26:00 AM
View record -
User #104 like Mara Johnson liked your post
1/5/2026, 11:13:25 AM
View record -
User #182 mention Sarah West mentioned you in a post
8/30/2025, 7:17:53 PM
View record -
User #125 system System notification
10/24/2025, 4:56:27 AM
View record -
User #184 reply Bradford Doyle replied to your comment
11/25/2025, 10:48:28 AM
View record -
User #28 system System notification
9/26/2025, 4:39:04 PM
View record -
User #136 like Ike Breitenberg liked your post
12/2/2025, 9:51:49 AM
View record -
User #226 follow Jesse Kiehn started following you
1/12/2026, 4:02:42 AM
View record -
User #29 system System notification
5/14/2026, 8:18:28 AM
View record -
User #195 system System notification
11/6/2025, 9:17:21 PM
View record -
User #225 system System notification
2/24/2026, 6:08:37 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": 1489,
"userId": 31,
"type": "mention",
"title": "Brycen Bayer mentioned you in a post",
"body": "Molestiae victoria correptius temporibus nostrum charisma aggredior.",
"isRead": false,
"link": null,
"createdAt": "2026-03-20T09:54:25.032Z"
},
{
"id": 1490,
"userId": 108,
"type": "follow",
"title": "Antoinette Greenfelder started following you",
"body": "Aro coniecto coerceo.",
"isRead": false,
"link": "https://example.com/follow/10Ocq4VM",
"createdAt": "2025-06-22T18:48:22.514Z"
},
{
"id": 1491,
"userId": 139,
"type": "follow",
"title": "Era Mitchell started following you",
"body": "Rem degenero calculus admoveo aiunt sol terreo adimpleo balbus.",
"isRead": false,
"link": "https://example.com/follow/Ldw9BxK1",
"createdAt": "2026-04-07T10:53:49.971Z"
}
],
"meta": {
"page": 63,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=63&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=64&limit=24",
"prev": "/api/v1/notifications?page=62&limit=24"
}
}