notifications
notifications
Page 29 of 84.
Overview
-
User #58 reply Lennie Dickinson replied to your comment
3/10/2026, 2:45:44 AM
View record -
User #121 follow Maryam Kunze started following you
11/27/2025, 7:11:18 AM
View record -
User #175 like Fritz Skiles liked your post
2/4/2026, 11:23:32 PM
View record -
User #197 like Sammy Schmidt liked your post
8/11/2025, 11:01:42 PM
View record -
User #200 system System notification
11/14/2025, 11:54:13 PM
View record -
User #232 system System notification
5/3/2026, 2:16:55 AM
View record -
User #77 mention Webster Skiles mentioned you in a post
11/21/2025, 3:52:24 PM
View record -
User #37 mention Niko Wisozk mentioned you in a post
7/22/2025, 1:16:53 AM
View record -
User #29 system System notification
9/14/2025, 5:01:25 PM
View record -
User #95 mention Consuelo Borer mentioned you in a post
6/25/2025, 3:18:13 PM
View record -
User #199 system System notification
10/27/2025, 11:53:07 PM
View record -
User #194 like Alex Lang liked your post
8/14/2025, 8:32:25 PM
View record -
User #239 follow Ericka DuBuque started following you
10/23/2025, 8:22:42 PM
View record -
User #46 system System notification
7/1/2025, 3:45:11 PM
View record -
User #98 follow Cassidy Price-Schimmel started following you
7/31/2025, 6:38:03 AM
View record -
User #108 like Lavonne Schmidt liked your post
3/6/2026, 8:35:34 PM
View record -
User #205 reply Darian Schaden replied to your comment
3/3/2026, 5:45:12 PM
View record -
User #73 system System notification
9/3/2025, 6:16:23 AM
View record -
User #248 follow Mckenna Hegmann-Price started following you
9/18/2025, 8:09:29 AM
View record -
User #65 follow Loren Schmidt started following you
6/5/2025, 12:00:44 PM
View record -
User #212 follow Maximus Bosco started following you
12/23/2025, 7:15:25 PM
View record -
User #235 follow Lilly Rosenbaum started following you
6/23/2025, 1:59:10 PM
View record -
User #185 like Arnaldo Friesen liked your post
8/26/2025, 6:34:17 PM
View record -
User #156 like Allan Buckridge liked your post
9/13/2025, 4:31:56 AM
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": 673,
"userId": 58,
"type": "reply",
"title": "Lennie Dickinson replied to your comment",
"body": "Cui auditor arguo voro cohibeo cunctatio.",
"isRead": true,
"link": "https://example.com/reply/sr9c5QUR",
"createdAt": "2026-03-10T02:45:44.869Z"
},
{
"id": 674,
"userId": 121,
"type": "follow",
"title": "Maryam Kunze started following you",
"body": "Peior absorbeo derideo trucido stips conduco illo demergo.",
"isRead": true,
"link": "https://example.com/follow/IAmw85PU",
"createdAt": "2025-11-27T07:11:18.189Z"
},
{
"id": 675,
"userId": 175,
"type": "like",
"title": "Fritz Skiles liked your post",
"body": "Spargo adicio claudeo cinis corrigo vomer vestrum valde vado.",
"isRead": false,
"link": "https://example.com/like/EYpQzZI2",
"createdAt": "2026-02-04T23:23:32.652Z"
}
],
"meta": {
"page": 29,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=29&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=30&limit=24",
"prev": "/api/v1/notifications?page=28&limit=24"
}
}