notifications
notifications
Page 40 of 84.
Overview
-
User #221 mention Ike Breitenberg mentioned you in a post
7/10/2025, 1:30:31 PM
View record -
User #174 system System notification
3/22/2026, 9:03:44 PM
View record -
User #225 mention Alvina Koch mentioned you in a post
8/31/2025, 2:26:07 AM
View record -
User #229 reply Matt Kuhic replied to your comment
2/10/2026, 10:02:11 AM
View record -
User #216 follow Carroll Wisozk started following you
7/27/2025, 5:56:05 AM
View record -
User #153 like Kenya Abshire liked your post
1/29/2026, 4:32:18 PM
View record -
User #66 like Vida Kunde-Koepp liked your post
3/20/2026, 9:39:37 PM
View record -
User #39 mention Michale Hilpert mentioned you in a post
10/3/2025, 2:43:01 AM
View record -
User #125 system System notification
11/14/2025, 6:14:11 AM
View record -
User #159 mention Fatima Dicki mentioned you in a post
1/31/2026, 4:22:40 PM
View record -
User #56 system System notification
5/24/2025, 7:40:41 AM
View record -
User #189 reply Brock Hackett replied to your comment
8/2/2025, 2:46:29 AM
View record -
User #184 mention Ismael Ward mentioned you in a post
6/13/2025, 5:18:57 PM
View record -
User #123 reply Clementine Nicolas replied to your comment
10/12/2025, 9:37:32 AM
View record -
User #150 follow Ryan Conroy started following you
9/30/2025, 7:34:00 PM
View record -
User #101 system System notification
12/17/2025, 4:08:19 PM
View record -
User #68 like Mia Renner liked your post
8/12/2025, 5:13:28 PM
View record -
User #67 follow Jamil Mayer started following you
11/16/2025, 10:24:20 PM
View record -
User #157 like Jameson Considine liked your post
7/11/2025, 4:56:50 PM
View record -
User #136 reply Velma Jerde replied to your comment
4/20/2026, 7:44:57 PM
View record -
User #105 follow Ludwig Stiedemann started following you
10/18/2025, 10:35:42 AM
View record -
User #210 system System notification
12/28/2025, 1:48:07 PM
View record -
User #35 follow Jameson Considine started following you
8/28/2025, 12:27:14 PM
View record -
User #35 like Hortense Cruickshank liked your post
6/30/2025, 8:54:27 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": 937,
"userId": 221,
"type": "mention",
"title": "Ike Breitenberg mentioned you in a post",
"body": "Accusantium tyrannus deleniti tondeo teneo possimus totidem terror.",
"isRead": true,
"link": "https://example.com/mention/vY1PbUwA",
"createdAt": "2025-07-10T13:30:31.363Z"
},
{
"id": 938,
"userId": 174,
"type": "system",
"title": "System notification",
"body": "Tenuis cicuta viduo aequus cursus arcus.",
"isRead": false,
"link": "https://example.com/system/wwwP2CoQ",
"createdAt": "2026-03-22T21:03:44.443Z"
},
{
"id": 939,
"userId": 225,
"type": "mention",
"title": "Alvina Koch mentioned you in a post",
"body": "Succurro cursus ante desipio demitto.",
"isRead": false,
"link": null,
"createdAt": "2025-08-31T02:26:07.208Z"
}
],
"meta": {
"page": 40,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=40&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=41&limit=24",
"prev": "/api/v1/notifications?page=39&limit=24"
}
}