notifications
notifications
Page 19 of 84.
Overview
-
User #136 reply Jennifer Hoeger replied to your comment
7/20/2025, 10:36:50 PM
View record -
User #19 system System notification
7/26/2025, 5:34:03 PM
View record -
User #21 follow Jamil Mayer started following you
1/8/2026, 11:24:44 AM
View record -
User #71 reply Lilla Koss replied to your comment
4/19/2026, 4:14:12 PM
View record -
User #109 mention Jennifer Stoltenberg mentioned you in a post
2/18/2026, 7:25:31 PM
View record -
User #172 reply Maryam Kunze replied to your comment
3/13/2026, 1:14:12 AM
View record -
User #220 reply Sammy Schmidt replied to your comment
6/20/2025, 6:43:27 AM
View record -
User #221 system System notification
12/17/2025, 9:31:03 AM
View record -
User #10 system System notification
6/8/2025, 1:19:45 AM
View record -
User #59 mention Leonel Hamill mentioned you in a post
11/14/2025, 3:43:17 PM
View record -
User #13 reply Abdul Rau replied to your comment
3/24/2026, 11:01:32 PM
View record -
User #14 mention Claudie Hagenes mentioned you in a post
3/1/2026, 12:12:47 PM
View record -
User #243 like Malvina Ortiz liked your post
12/26/2025, 1:29:05 PM
View record -
User #19 like Ryan Conroy liked your post
4/18/2026, 3:30:23 PM
View record -
User #28 mention Roma Durgan mentioned you in a post
12/28/2025, 6:02:52 AM
View record -
User #230 follow Amya Powlowski started following you
1/25/2026, 9:31:41 AM
View record -
User #93 follow Lazaro Herzog started following you
6/12/2025, 8:27:49 PM
View record -
User #196 mention Gudrun Brakus mentioned you in a post
10/29/2025, 5:43:10 PM
View record -
User #80 system System notification
8/7/2025, 7:05:33 AM
View record -
User #84 reply Audreanne Will replied to your comment
12/26/2025, 1:50:11 AM
View record -
User #6 reply Alex Lang replied to your comment
7/23/2025, 12:51:12 PM
View record -
User #194 follow Earnestine Dickinson started following you
5/22/2025, 12:13:52 PM
View record -
User #144 like Kenya Abshire liked your post
8/18/2025, 12:57:12 PM
View record -
User #68 mention Abdul Rau mentioned you in a post
11/29/2025, 7:02:48 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": 433,
"userId": 136,
"type": "reply",
"title": "Jennifer Hoeger replied to your comment",
"body": "Textilis dedico compello damnatio.",
"isRead": false,
"link": "https://example.com/reply/JaOfGEY_",
"createdAt": "2025-07-20T22:36:50.627Z"
},
{
"id": 434,
"userId": 19,
"type": "system",
"title": "System notification",
"body": "Cohors spargo iusto sollicito arcus ad magnam curo concido.",
"isRead": false,
"link": "https://example.com/system/EGTkdNox",
"createdAt": "2025-07-26T17:34:03.758Z"
},
{
"id": 435,
"userId": 21,
"type": "follow",
"title": "Jamil Mayer started following you",
"body": "Deserunt expedita aegre.",
"isRead": true,
"link": null,
"createdAt": "2026-01-08T11:24:44.793Z"
}
],
"meta": {
"page": 19,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=19&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=20&limit=24",
"prev": "/api/v1/notifications?page=18&limit=24"
}
}