notifications
notifications
Page 26 of 84.
Overview
-
User #129 like Adrain Kris-Hermiston liked your post
10/15/2025, 5:27:03 PM
View record -
User #20 system System notification
8/24/2025, 3:17:08 AM
View record -
User #176 follow Margaretta Barrows started following you
12/10/2025, 5:14:28 PM
View record -
User #250 follow Sonia Nolan started following you
1/22/2026, 11:31:33 AM
View record -
User #221 reply Lennie Dickinson replied to your comment
6/23/2025, 6:37:14 AM
View record -
User #174 system System notification
3/13/2026, 8:51:48 PM
View record -
User #109 follow Jacynthe Sawayn started following you
4/9/2026, 8:21:52 AM
View record -
User #187 reply Brock Hackett replied to your comment
9/3/2025, 12:43:04 AM
View record -
User #37 follow Webster Skiles started following you
4/14/2026, 9:48:10 PM
View record -
User #24 like Maryam Kunze liked your post
1/10/2026, 2:33:03 PM
View record -
User #81 follow Myrl Pollich started following you
3/9/2026, 2:55:59 AM
View record -
User #200 mention Antoinette Greenfelder mentioned you in a post
1/10/2026, 6:54:39 PM
View record -
User #125 like Joseph Steuber liked your post
8/7/2025, 11:24:35 PM
View record -
User #69 follow Whitney O'Reilly started following you
10/13/2025, 11:10:16 PM
View record -
User #90 follow Joseph Nitzsche started following you
5/26/2025, 1:29:19 PM
View record -
User #134 system System notification
11/26/2025, 4:45:28 PM
View record -
User #198 mention Cassidy Boehm mentioned you in a post
8/22/2025, 12:11:54 AM
View record -
User #75 like Cyril Frami liked your post
5/6/2026, 6:12:36 AM
View record -
User #37 follow Carroll Wisozk started following you
7/2/2025, 4:44:32 AM
View record -
User #205 reply Britney Haag replied to your comment
2/22/2026, 1:59:15 PM
View record -
User #31 like Florencio Mohr liked your post
10/29/2025, 3:03:09 PM
View record -
User #171 mention Green Kozey mentioned you in a post
4/29/2026, 1:50:57 AM
View record -
User #27 mention Beau Stiedemann mentioned you in a post
6/27/2025, 4:14:45 AM
View record -
User #14 system System notification
2/6/2026, 6:13:56 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": 601,
"userId": 129,
"type": "like",
"title": "Adrain Kris-Hermiston liked your post",
"body": "Caste crastinus canto.",
"isRead": true,
"link": "https://example.com/like/v42HsqJy",
"createdAt": "2025-10-15T17:27:03.600Z"
},
{
"id": 602,
"userId": 20,
"type": "system",
"title": "System notification",
"body": "Amicitia sodalitas vilicus vilitas vilis cubitum autem tui voluptate brevis.",
"isRead": false,
"link": "https://example.com/system/wAwOwnSz",
"createdAt": "2025-08-24T03:17:08.782Z"
},
{
"id": 603,
"userId": 176,
"type": "follow",
"title": "Margaretta Barrows started following you",
"body": "Beneficium ago adimpleo triduana.",
"isRead": true,
"link": "https://example.com/follow/DfQrCgD0",
"createdAt": "2025-12-10T17:14:28.448Z"
}
],
"meta": {
"page": 26,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=26&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=27&limit=24",
"prev": "/api/v1/notifications?page=25&limit=24"
}
}