notifications
notifications
Page 32 of 84.
Overview
-
User #147 like Jonas Rath liked your post
11/24/2025, 10:43:17 AM
View record -
User #97 follow Wallace Batz started following you
7/29/2025, 1:01:20 PM
View record -
User #30 follow Alvina Koch started following you
5/25/2025, 1:52:42 PM
View record -
User #223 system System notification
10/6/2025, 1:17:01 PM
View record -
User #221 follow Roberta Mueller-Yundt started following you
5/9/2026, 11:15:40 AM
View record -
User #57 system System notification
5/15/2026, 10:47:00 AM
View record -
User #61 like Camron O'Conner liked your post
3/10/2026, 1:26:31 PM
View record -
User #28 reply Fritz Skiles replied to your comment
4/24/2026, 11:12:54 AM
View record -
User #236 system System notification
12/6/2025, 4:06:08 AM
View record -
User #31 follow Lenny Howe started following you
6/22/2025, 7:15:03 PM
View record -
User #239 system System notification
2/9/2026, 11:25:00 AM
View record -
User #100 reply Ike Breitenberg replied to your comment
5/16/2026, 12:09:35 PM
View record -
User #210 system System notification
12/26/2025, 6:07:11 AM
View record -
User #106 system System notification
2/7/2026, 4:07:17 PM
View record -
User #145 system System notification
5/14/2026, 4:03:57 PM
View record -
User #199 reply Lazaro Rath replied to your comment
6/24/2025, 4:57:22 AM
View record -
User #145 system System notification
7/8/2025, 8:48:21 AM
View record -
User #30 system System notification
10/22/2025, 10:44:55 PM
View record -
User #98 mention Monte Botsford mentioned you in a post
7/29/2025, 4:46:46 PM
View record -
User #117 system System notification
3/29/2026, 5:24:05 PM
View record -
User #5 reply Elvis Littel-Vandervort replied to your comment
6/29/2025, 6:10:15 AM
View record -
User #86 like Camron O'Conner liked your post
12/6/2025, 11:33:21 AM
View record -
User #213 system System notification
9/8/2025, 2:52:25 AM
View record -
User #50 mention Alexa Rippin mentioned you in a post
11/11/2025, 4:51:10 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": 745,
"userId": 147,
"type": "like",
"title": "Jonas Rath liked your post",
"body": "Avaritia creber dedico.",
"isRead": false,
"link": "https://example.com/like/6i9hTXYZ",
"createdAt": "2025-11-24T10:43:17.041Z"
},
{
"id": 746,
"userId": 97,
"type": "follow",
"title": "Wallace Batz started following you",
"body": "Abscido subvenio vel bis demonstro.",
"isRead": false,
"link": "https://example.com/follow/_-484rOB",
"createdAt": "2025-07-29T13:01:20.213Z"
},
{
"id": 747,
"userId": 30,
"type": "follow",
"title": "Alvina Koch started following you",
"body": "Tabgo veniam absens.",
"isRead": false,
"link": null,
"createdAt": "2025-05-25T13:52:42.098Z"
}
],
"meta": {
"page": 32,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=32&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=33&limit=24",
"prev": "/api/v1/notifications?page=31&limit=24"
}
}