notifications
notifications
Page 65 of 84.
Overview
-
User #222 follow Green Kozey started following you
3/23/2026, 7:38:00 PM
View record -
User #203 follow Ethyl Auer started following you
3/29/2026, 2:40:40 PM
View record -
User #157 like Alexander Beahan liked your post
12/20/2025, 4:30:04 AM
View record -
User #179 system System notification
4/28/2026, 6:18:15 PM
View record -
User #74 like Ruben Terry liked your post
9/12/2025, 11:54:31 PM
View record -
User #20 mention Lawrence Rogahn mentioned you in a post
1/29/2026, 3:55:46 AM
View record -
User #80 system System notification
5/24/2025, 6:40:03 PM
View record -
User #223 mention Kaden Brekke mentioned you in a post
1/26/2026, 10:24:50 PM
View record -
User #228 follow Ericka DuBuque started following you
10/19/2025, 5:14:02 PM
View record -
User #35 follow Charlene Kuhic started following you
8/13/2025, 3:29:02 AM
View record -
User #100 follow Lazaro Rath started following you
12/12/2025, 1:05:30 AM
View record -
User #219 like Jaylon Conroy liked your post
1/8/2026, 1:58:57 AM
View record -
User #219 follow Carmel Schultz started following you
10/21/2025, 8:09:33 AM
View record -
User #189 reply Gwendolyn Wyman replied to your comment
3/8/2026, 1:35:23 PM
View record -
User #74 reply Merl Jenkins replied to your comment
10/7/2025, 2:58:51 PM
View record -
User #130 like Enos Hamill liked your post
7/10/2025, 4:48:26 AM
View record -
User #224 follow Emilia Cummerata started following you
11/24/2025, 5:15:17 PM
View record -
User #114 like Ken Towne liked your post
9/22/2025, 7:03:32 AM
View record -
User #8 follow Cassidy Boehm started following you
9/12/2025, 3:08:51 AM
View record -
User #66 follow Arnaldo Friesen started following you
6/29/2025, 9:59:16 PM
View record -
User #40 mention Earlene Wisozk mentioned you in a post
3/1/2026, 1:09:06 PM
View record -
User #174 like Americo Hoppe liked your post
3/9/2026, 6:32:34 AM
View record -
User #100 system System notification
1/18/2026, 8:33:38 PM
View record -
User #57 follow Allan Buckridge started following you
10/4/2025, 8:25:01 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": 1537,
"userId": 222,
"type": "follow",
"title": "Green Kozey started following you",
"body": "Adicio voro sublime magni curiositas viscus.",
"isRead": false,
"link": "https://example.com/follow/3-7FSB2V",
"createdAt": "2026-03-23T19:38:00.343Z"
},
{
"id": 1538,
"userId": 203,
"type": "follow",
"title": "Ethyl Auer started following you",
"body": "Canis vix dolorem deserunt.",
"isRead": true,
"link": null,
"createdAt": "2026-03-29T14:40:40.802Z"
},
{
"id": 1539,
"userId": 157,
"type": "like",
"title": "Alexander Beahan liked your post",
"body": "Amiculum beatus subseco degusto alias cognomen capitulus bonus advenio thorax.",
"isRead": true,
"link": "https://example.com/like/pY6wPCKI",
"createdAt": "2025-12-20T04:30:04.942Z"
}
],
"meta": {
"page": 65,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=65&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=66&limit=24",
"prev": "/api/v1/notifications?page=64&limit=24"
}
}