notifications
notifications
Page 74 of 84.
Overview
-
User #48 reply Alex Lang replied to your comment
8/18/2025, 1:06:47 AM
View record -
User #167 system System notification
8/28/2025, 8:47:23 AM
View record -
User #204 follow Mike Zemlak started following you
6/5/2025, 5:22:23 AM
View record -
User #65 follow Jonathan Howe started following you
12/1/2025, 3:10:41 AM
View record -
User #79 like Filiberto Fay liked your post
10/16/2025, 6:32:40 AM
View record -
User #175 mention Alexander Beahan mentioned you in a post
1/19/2026, 10:45:38 PM
View record -
User #55 like Tillman Breitenberg liked your post
2/23/2026, 8:31:00 AM
View record -
User #125 like Lamar Wilkinson liked your post
9/9/2025, 2:51:23 AM
View record -
User #76 system System notification
12/10/2025, 3:59:42 PM
View record -
User #21 system System notification
9/25/2025, 10:54:51 AM
View record -
User #116 follow Kennith Hahn started following you
1/10/2026, 7:38:10 AM
View record -
User #217 mention Hermina West mentioned you in a post
12/17/2025, 3:39:12 PM
View record -
User #196 system System notification
10/10/2025, 3:40:09 AM
View record -
User #175 like Earlene Wisozk liked your post
9/17/2025, 11:16:43 PM
View record -
User #238 like Adelia Roberts liked your post
7/6/2025, 3:06:29 PM
View record -
User #74 mention Lavonne Schmidt mentioned you in a post
10/6/2025, 6:03:47 AM
View record -
User #224 like Kariane Schmitt liked your post
6/12/2025, 1:47:05 PM
View record -
User #63 follow Aylin Sanford started following you
9/20/2025, 12:12:42 PM
View record -
User #112 system System notification
11/22/2025, 7:23:56 AM
View record -
User #153 follow Filiberto Fay started following you
3/23/2026, 9:53:06 PM
View record -
User #35 follow Rosemary Krajcik started following you
1/20/2026, 1:03:40 PM
View record -
User #101 reply Cindy Barrows replied to your comment
7/20/2025, 8:11:13 PM
View record -
User #91 follow Jameson Considine started following you
2/4/2026, 3:15:02 AM
View record -
User #199 like Hilda Crooks liked your post
12/28/2025, 3:09:55 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": 1753,
"userId": 48,
"type": "reply",
"title": "Alex Lang replied to your comment",
"body": "Suadeo usus exercitationem certe vesper tracto aegrus vel.",
"isRead": false,
"link": "https://example.com/reply/2bdeopbr",
"createdAt": "2025-08-18T01:06:47.810Z"
},
{
"id": 1754,
"userId": 167,
"type": "system",
"title": "System notification",
"body": "Sodalitas arbitro verecundia est delibero deprecator amet autus depulso apud.",
"isRead": true,
"link": null,
"createdAt": "2025-08-28T08:47:23.168Z"
},
{
"id": 1755,
"userId": 204,
"type": "follow",
"title": "Mike Zemlak started following you",
"body": "Aliquid dolorum absum deludo colo velit sono clementia.",
"isRead": false,
"link": "https://example.com/follow/jqKKNT47",
"createdAt": "2025-06-05T05:22:23.418Z"
}
],
"meta": {
"page": 74,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=74&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=75&limit=24",
"prev": "/api/v1/notifications?page=73&limit=24"
}
}