notifications
notifications
Page 15 of 84.
Overview
-
User #56 mention Lazaro Herzog mentioned you in a post
9/8/2025, 6:44:56 PM
View record -
User #243 mention Rosemary Krajcik mentioned you in a post
5/10/2026, 4:10:57 PM
View record -
User #33 follow Merl Jenkins started following you
1/12/2026, 11:44:34 PM
View record -
User #52 follow Roosevelt Ullrich started following you
5/7/2026, 8:01:47 AM
View record -
User #20 like Jaylon Conroy liked your post
10/16/2025, 9:16:14 PM
View record -
User #33 mention April Kihn mentioned you in a post
7/12/2025, 7:03:06 AM
View record -
User #64 reply Telly Sanford replied to your comment
2/6/2026, 11:40:45 PM
View record -
User #147 system System notification
9/24/2025, 9:02:10 PM
View record -
User #17 follow Filiberto Fay started following you
8/21/2025, 8:59:04 PM
View record -
User #226 follow Wiley Rodriguez started following you
3/24/2026, 5:30:17 PM
View record -
User #203 reply Kenya Abshire replied to your comment
7/2/2025, 4:26:42 PM
View record -
User #154 system System notification
6/9/2025, 2:24:10 PM
View record -
User #100 follow Kaleb Schmidt started following you
12/6/2025, 2:03:04 AM
View record -
User #198 like Marta Harvey liked your post
3/16/2026, 11:55:01 AM
View record -
User #188 reply Michaela Feeney replied to your comment
5/18/2026, 12:43:18 AM
View record -
User #88 system System notification
1/11/2026, 2:48:48 PM
View record -
User #159 system System notification
4/19/2026, 7:04:12 AM
View record -
User #103 system System notification
8/14/2025, 8:43:36 AM
View record -
User #190 like Celia D'Amore liked your post
2/3/2026, 11:24:35 AM
View record -
User #177 like Aylin Sanford liked your post
11/1/2025, 8:53:55 PM
View record -
User #14 reply Eveline Emard replied to your comment
1/15/2026, 11:17:43 PM
View record -
User #48 mention Wallace Batz mentioned you in a post
2/5/2026, 5:17:34 AM
View record -
User #166 system System notification
1/8/2026, 8:15:59 AM
View record -
User #57 follow Jensen Bashirian started following you
10/24/2025, 6:00:42 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": 337,
"userId": 56,
"type": "mention",
"title": "Lazaro Herzog mentioned you in a post",
"body": "Supra denique tremo delinquo tepidus sum concedo.",
"isRead": true,
"link": "https://example.com/mention/gdzMB8SJ",
"createdAt": "2025-09-08T18:44:56.648Z"
},
{
"id": 338,
"userId": 243,
"type": "mention",
"title": "Rosemary Krajcik mentioned you in a post",
"body": "Quidem impedit ultra soluta caelum argentum unde ullus tyrannus curiositas.",
"isRead": true,
"link": "https://example.com/mention/T5U-N1im",
"createdAt": "2026-05-10T16:10:57.299Z"
},
{
"id": 339,
"userId": 33,
"type": "follow",
"title": "Merl Jenkins started following you",
"body": "Turpis id attonbitus vorax.",
"isRead": false,
"link": null,
"createdAt": "2026-01-12T23:44:34.664Z"
}
],
"meta": {
"page": 15,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=15&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=16&limit=24",
"prev": "/api/v1/notifications?page=14&limit=24"
}
}