notifications
notifications
Page 67 of 84.
Overview
-
User #75 follow Adrain Kris-Hermiston started following you
4/7/2026, 2:41:15 PM
View record -
User #103 like Merl Jenkins liked your post
9/18/2025, 9:11:43 PM
View record -
User #90 like Whitney O'Reilly liked your post
7/7/2025, 10:11:22 AM
View record -
User #243 mention Nikolas Wolf mentioned you in a post
7/23/2025, 8:24:17 AM
View record -
User #21 mention Daisy Kuhic mentioned you in a post
12/28/2025, 8:26:09 PM
View record -
User #27 like Amina King liked your post
2/4/2026, 6:17:11 PM
View record -
User #234 mention Cassidy Boehm mentioned you in a post
7/18/2025, 11:47:08 AM
View record -
User #115 follow Jamaal Rolfson started following you
9/1/2025, 7:56:08 AM
View record -
User #22 system System notification
7/30/2025, 4:41:56 PM
View record -
User #114 like Hilda Crooks liked your post
2/7/2026, 6:34:44 PM
View record -
User #117 system System notification
5/14/2026, 5:37:49 AM
View record -
User #159 follow Clyde Bernier-Gleason started following you
2/19/2026, 10:20:02 PM
View record -
User #43 system System notification
12/11/2025, 3:27:48 PM
View record -
User #197 reply Lazaro Herzog replied to your comment
3/20/2026, 9:37:11 AM
View record -
User #244 follow Rupert Lebsack started following you
9/25/2025, 2:52:48 AM
View record -
User #62 mention Kennith Hahn mentioned you in a post
2/9/2026, 5:58:03 PM
View record -
User #217 like Jermain Kshlerin liked your post
11/22/2025, 1:08:48 AM
View record -
User #236 mention Selina Flatley mentioned you in a post
9/2/2025, 3:39:52 AM
View record -
User #193 follow Malvina Ortiz started following you
12/2/2025, 5:02:20 AM
View record -
User #165 like Allan Buckridge liked your post
4/9/2026, 1:56:49 PM
View record -
User #187 like Judy Hackett liked your post
3/13/2026, 9:33:32 AM
View record -
User #202 follow Perry Kerluke started following you
5/6/2026, 8:37:27 AM
View record -
User #214 follow Izaiah Rempel started following you
11/20/2025, 9:22:22 AM
View record -
User #63 follow Alexander Beahan started following you
6/22/2025, 12:07:28 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": 1585,
"userId": 75,
"type": "follow",
"title": "Adrain Kris-Hermiston started following you",
"body": "Absens autus voro trucido verbera sublime.",
"isRead": false,
"link": "https://example.com/follow/14IIwUAd",
"createdAt": "2026-04-07T14:41:15.388Z"
},
{
"id": 1586,
"userId": 103,
"type": "like",
"title": "Merl Jenkins liked your post",
"body": "Vis voluptate canonicus audax.",
"isRead": true,
"link": "https://example.com/like/faVX3-eL",
"createdAt": "2025-09-18T21:11:43.487Z"
},
{
"id": 1587,
"userId": 90,
"type": "like",
"title": "Whitney O'Reilly liked your post",
"body": "Minima excepturi adulescens thermae collum cernuus concedo decet clam.",
"isRead": false,
"link": "https://example.com/like/gtM36_zn",
"createdAt": "2025-07-07T10:11:22.102Z"
}
],
"meta": {
"page": 67,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=67&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=68&limit=24",
"prev": "/api/v1/notifications?page=66&limit=24"
}
}