notifications
notifications
Page 49 of 84.
Overview
-
User #20 follow Jermain Kshlerin started following you
1/6/2026, 9:45:15 PM
View record -
User #31 like Oliver Mitchell liked your post
4/1/2026, 2:32:59 PM
View record -
User #158 mention Adrain Kris-Hermiston mentioned you in a post
4/11/2026, 7:25:20 AM
View record -
User #35 system System notification
4/25/2026, 7:01:22 AM
View record -
User #8 mention Douglas Frami mentioned you in a post
5/21/2026, 3:05:38 PM
View record -
User #55 system System notification
10/23/2025, 2:12:42 PM
View record -
User #248 reply Adrain Kris-Hermiston replied to your comment
4/17/2026, 12:17:43 AM
View record -
User #56 reply Conrad Connelly replied to your comment
2/9/2026, 5:14:29 PM
View record -
User #51 like Roberta Mueller-Yundt liked your post
4/7/2026, 4:20:24 AM
View record -
User #130 reply Oran Torphy replied to your comment
8/25/2025, 5:53:19 PM
View record -
User #93 mention Vidal Parker mentioned you in a post
9/28/2025, 6:56:41 AM
View record -
User #237 reply Ressie Howell-Hodkiewicz replied to your comment
8/21/2025, 9:30:26 AM
View record -
User #136 system System notification
11/14/2025, 9:35:49 PM
View record -
User #121 system System notification
7/14/2025, 1:22:43 AM
View record -
User #56 system System notification
10/29/2025, 6:34:34 AM
View record -
User #40 system System notification
3/26/2026, 5:42:20 AM
View record -
User #125 system System notification
4/1/2026, 11:24:51 AM
View record -
User #231 like Malvina Ortiz liked your post
4/1/2026, 3:23:48 AM
View record -
User #32 mention Van Crona mentioned you in a post
3/28/2026, 11:20:13 AM
View record -
User #171 reply Allan Buckridge replied to your comment
12/3/2025, 8:12:16 PM
View record -
User #66 system System notification
7/8/2025, 8:33:16 AM
View record -
User #224 follow Darian Schaden started following you
11/5/2025, 6:17:10 PM
View record -
User #117 mention Orrin Grant mentioned you in a post
2/13/2026, 7:19:33 PM
View record -
User #167 follow Elvis Littel-Vandervort started following you
2/3/2026, 6:21:44 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": 1153,
"userId": 20,
"type": "follow",
"title": "Jermain Kshlerin started following you",
"body": "Sursum tendo denique deputo tero ea ipsum cado.",
"isRead": false,
"link": null,
"createdAt": "2026-01-06T21:45:15.220Z"
},
{
"id": 1154,
"userId": 31,
"type": "like",
"title": "Oliver Mitchell liked your post",
"body": "Anser nisi tactus cunctatio thema aranea carmen cunabula clam bellum.",
"isRead": false,
"link": "https://example.com/like/ECeqqPB5",
"createdAt": "2026-04-01T14:32:59.674Z"
},
{
"id": 1155,
"userId": 158,
"type": "mention",
"title": "Adrain Kris-Hermiston mentioned you in a post",
"body": "Alius veritas accusantium molestiae compono audax volup sulum celo.",
"isRead": false,
"link": "https://example.com/mention/GIB9C-pI",
"createdAt": "2026-04-11T07:25:20.050Z"
}
],
"meta": {
"page": 49,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=49&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=50&limit=24",
"prev": "/api/v1/notifications?page=48&limit=24"
}
}