notifications
notifications
Page 73 of 84.
Overview
-
User #247 system System notification
8/17/2025, 2:41:55 AM
View record -
User #232 follow Berniece Medhurst started following you
2/18/2026, 5:50:46 PM
View record -
User #71 mention Claudie Hagenes mentioned you in a post
5/12/2026, 12:27:11 PM
View record -
User #212 system System notification
4/12/2026, 7:14:37 PM
View record -
User #209 mention Kamryn Rogahn mentioned you in a post
7/22/2025, 7:48:56 PM
View record -
User #36 follow Diana Murazik started following you
3/25/2026, 4:32:27 AM
View record -
User #13 mention Frederic Armstrong mentioned you in a post
6/25/2025, 11:02:34 PM
View record -
User #198 like Lazaro Rath liked your post
7/5/2025, 11:05:32 PM
View record -
User #235 reply Kariane Schmitt replied to your comment
5/24/2025, 4:10:07 AM
View record -
User #96 reply Queen Lubowitz replied to your comment
11/30/2025, 7:20:00 PM
View record -
User #75 mention Mara Johnson mentioned you in a post
4/7/2026, 4:37:54 AM
View record -
User #33 mention Einar Volkman mentioned you in a post
10/14/2025, 12:30:33 AM
View record -
User #55 mention Lilla Koss mentioned you in a post
1/14/2026, 2:34:12 PM
View record -
User #167 system System notification
11/3/2025, 5:39:27 PM
View record -
User #16 reply Anne Hamill replied to your comment
12/24/2025, 4:30:54 AM
View record -
User #110 like Maria Senger liked your post
7/30/2025, 5:47:02 AM
View record -
User #218 like Lazaro Herzog liked your post
4/14/2026, 11:22:47 PM
View record -
User #239 mention Marilou Douglas mentioned you in a post
6/10/2025, 11:23:27 AM
View record -
User #18 mention Mable West mentioned you in a post
3/23/2026, 7:44:09 PM
View record -
User #52 like Marta Harvey liked your post
6/30/2025, 12:12:16 PM
View record -
User #24 like Anne Hamill liked your post
5/31/2025, 5:27:33 PM
View record -
User #181 reply Kevon Dickinson replied to your comment
7/14/2025, 5:38:56 PM
View record -
User #1 like Gwendolyn Wyman liked your post
12/31/2025, 5:50:35 PM
View record -
User #219 system System notification
2/28/2026, 7:18:35 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": 1729,
"userId": 247,
"type": "system",
"title": "System notification",
"body": "Ullus usitas sollicito sono caelum suppono modi iusto ambitus cohors.",
"isRead": false,
"link": "https://example.com/system/GKedFkB8",
"createdAt": "2025-08-17T02:41:55.260Z"
},
{
"id": 1730,
"userId": 232,
"type": "follow",
"title": "Berniece Medhurst started following you",
"body": "Alter optio iure coma cui excepturi congregatio.",
"isRead": false,
"link": "https://example.com/follow/AS_lkKqN",
"createdAt": "2026-02-18T17:50:46.210Z"
},
{
"id": 1731,
"userId": 71,
"type": "mention",
"title": "Claudie Hagenes mentioned you in a post",
"body": "Coerceo conforto uredo vulgus canto turpis cena.",
"isRead": true,
"link": null,
"createdAt": "2026-05-12T12:27:11.332Z"
}
],
"meta": {
"page": 73,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=73&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=74&limit=24",
"prev": "/api/v1/notifications?page=72&limit=24"
}
}