notifications
notifications
Page 60 of 84.
Overview
-
User #161 like Era Mitchell liked your post
5/18/2026, 11:36:47 AM
View record -
User #82 reply Gwendolyn Wyman replied to your comment
1/9/2026, 10:40:19 AM
View record -
User #154 system System notification
6/30/2025, 7:23:21 AM
View record -
User #194 system System notification
2/19/2026, 7:59:33 AM
View record -
User #172 system System notification
11/8/2025, 11:47:33 AM
View record -
User #145 reply Amely Daniel replied to your comment
10/2/2025, 9:49:36 AM
View record -
User #123 mention Joseph Nitzsche mentioned you in a post
8/31/2025, 12:19:52 AM
View record -
User #117 system System notification
2/17/2026, 7:57:06 PM
View record -
User #118 system System notification
4/5/2026, 4:19:01 PM
View record -
User #138 like Raheem Kovacek liked your post
1/19/2026, 4:01:47 AM
View record -
User #120 mention Charlene Kuhic mentioned you in a post
11/11/2025, 8:15:55 AM
View record -
User #161 follow Jermain Kshlerin started following you
4/28/2026, 8:33:15 PM
View record -
User #2 system System notification
4/11/2026, 8:09:20 AM
View record -
User #183 system System notification
5/19/2026, 2:32:21 PM
View record -
User #189 mention Jamaal Rolfson mentioned you in a post
7/22/2025, 12:42:45 AM
View record -
User #247 mention Perry Kerluke mentioned you in a post
9/16/2025, 9:11:42 AM
View record -
User #193 reply Telly Sanford replied to your comment
2/17/2026, 12:22:20 PM
View record -
User #103 system System notification
11/6/2025, 6:59:37 AM
View record -
User #111 follow Camron O'Conner started following you
12/28/2025, 4:43:54 PM
View record -
User #198 reply Gavin Lowe replied to your comment
2/28/2026, 9:10:30 AM
View record -
User #55 follow Conrad Connelly started following you
6/16/2025, 8:38:40 PM
View record -
User #124 follow Esperanza Casper started following you
11/29/2025, 1:33:06 AM
View record -
User #43 like Fritz Skiles liked your post
7/12/2025, 7:42:34 PM
View record -
User #101 system System notification
1/13/2026, 2:58:08 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": 1417,
"userId": 161,
"type": "like",
"title": "Era Mitchell liked your post",
"body": "Abscido stipes tabella vesco cito cariosus denego valeo.",
"isRead": true,
"link": "https://example.com/like/5nyCjGWZ",
"createdAt": "2026-05-18T11:36:47.873Z"
},
{
"id": 1418,
"userId": 82,
"type": "reply",
"title": "Gwendolyn Wyman replied to your comment",
"body": "Bellicus suffoco thema quos crinis sint ipsum ver congregatio autem.",
"isRead": false,
"link": "https://example.com/reply/y-iBMKeq",
"createdAt": "2026-01-09T10:40:19.610Z"
},
{
"id": 1419,
"userId": 154,
"type": "system",
"title": "System notification",
"body": "Volubilis ascisco comparo tero verumtamen tunc theologus timidus capto.",
"isRead": false,
"link": null,
"createdAt": "2025-06-30T07:23:21.067Z"
}
],
"meta": {
"page": 60,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=60&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=61&limit=24",
"prev": "/api/v1/notifications?page=59&limit=24"
}
}