notifications
notifications
Page 2 of 84.
Overview
-
User #174 follow Myrtie Daniel started following you
2/26/2026, 4:37:33 AM
View record -
User #238 system System notification
8/3/2025, 4:05:32 AM
View record -
User #214 like Gerald Lind liked your post
6/1/2025, 9:19:31 AM
View record -
User #16 like Arnaldo Friesen liked your post
8/14/2025, 7:07:38 AM
View record -
User #182 system System notification
1/6/2026, 9:34:38 PM
View record -
User #23 mention Matilde Beahan mentioned you in a post
3/19/2026, 5:30:24 AM
View record -
User #191 follow Theresia Collins started following you
7/2/2025, 9:20:07 AM
View record -
User #234 mention Jaylon Conroy mentioned you in a post
4/23/2026, 3:24:44 PM
View record -
User #106 system System notification
1/28/2026, 5:12:59 AM
View record -
User #207 like Jadon Nicolas liked your post
5/28/2025, 5:59:52 PM
View record -
User #139 reply Charlene Kuhic replied to your comment
3/30/2026, 12:36:28 AM
View record -
User #115 system System notification
5/7/2026, 1:49:22 AM
View record -
User #79 follow Kennith Hahn started following you
11/23/2025, 5:52:25 AM
View record -
User #100 system System notification
6/25/2025, 3:58:11 AM
View record -
User #239 like Alvina Koch liked your post
3/25/2026, 10:43:58 PM
View record -
User #131 follow Myrl Pollich started following you
3/30/2026, 3:06:14 AM
View record -
User #82 like Mara Johnson liked your post
3/19/2026, 5:51:40 AM
View record -
User #134 mention Audreanne Will mentioned you in a post
12/4/2025, 10:26:01 PM
View record -
User #174 follow Celia D'Amore started following you
7/20/2025, 5:37:52 PM
View record -
User #164 system System notification
10/5/2025, 12:45:53 PM
View record -
User #98 like Clementine Nicolas liked your post
4/1/2026, 1:35:41 AM
View record -
User #81 follow Glenna Keebler started following you
9/5/2025, 10:54:56 PM
View record -
User #211 system System notification
10/16/2025, 9:06:36 AM
View record -
User #90 mention Malvina Ortiz mentioned you in a post
2/25/2026, 5:54:03 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": 25,
"userId": 174,
"type": "follow",
"title": "Myrtie Daniel started following you",
"body": "Timor stillicidium curiositas vis tenus ipsam decimus aperiam sortitus.",
"isRead": false,
"link": "https://example.com/follow/4oMGDaQC",
"createdAt": "2026-02-26T04:37:33.717Z"
},
{
"id": 26,
"userId": 238,
"type": "system",
"title": "System notification",
"body": "Omnis voluntarius pecco tepesco quam carus absorbeo decumbo.",
"isRead": true,
"link": "https://example.com/system/Ci26Jh2v",
"createdAt": "2025-08-03T04:05:32.002Z"
},
{
"id": 27,
"userId": 214,
"type": "like",
"title": "Gerald Lind liked your post",
"body": "Contego tumultus uberrime.",
"isRead": true,
"link": "https://example.com/like/Y7ENhg1T",
"createdAt": "2025-06-01T09:19:31.174Z"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=2&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=3&limit=24",
"prev": "/api/v1/notifications?page=1&limit=24"
}
}