notifications
notifications
Page 84 of 84.
Overview
-
User #239 system System notification
10/16/2025, 4:13:50 PM
View record -
User #1 like Adrain Kris-Hermiston liked your post
3/16/2026, 6:02:55 AM
View record -
User #217 follow Jennifer Hoeger started following you
7/2/2025, 3:06:18 PM
View record -
User #95 like Einar Volkman liked your post
11/9/2025, 7:55:57 PM
View record -
User #115 like Tabitha Ruecker liked your post
8/30/2025, 12:16:43 AM
View record -
User #218 reply Claudie Hagenes replied to your comment
11/29/2025, 9:08:12 PM
View record -
User #245 system System notification
10/8/2025, 12:10:33 PM
View record -
User #153 reply Ethyl Auer replied to your comment
5/8/2026, 2:13: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": 1993,
"userId": 239,
"type": "system",
"title": "System notification",
"body": "Succurro victoria textilis quia voluptates statim cibus vorago.",
"isRead": true,
"link": null,
"createdAt": "2025-10-16T16:13:50.021Z"
},
{
"id": 1994,
"userId": 1,
"type": "like",
"title": "Adrain Kris-Hermiston liked your post",
"body": "Amissio audacia vindico.",
"isRead": false,
"link": "https://example.com/like/MGYn0vsG",
"createdAt": "2026-03-16T06:02:55.392Z"
},
{
"id": 1995,
"userId": 217,
"type": "follow",
"title": "Jennifer Hoeger started following you",
"body": "Claudeo crastinus curatio.",
"isRead": false,
"link": "https://example.com/follow/8Nu_0dRV",
"createdAt": "2025-07-02T15:06:18.231Z"
}
],
"meta": {
"page": 84,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=84&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": null,
"prev": "/api/v1/notifications?page=83&limit=24"
}
}