notifications
notifications
Page 39 of 84.
Overview
-
User #69 system System notification
9/15/2025, 3:41:23 PM
View record -
User #163 mention Cassidy Christiansen mentioned you in a post
5/31/2025, 2:49:14 AM
View record -
User #129 mention Margaretta Barrows mentioned you in a post
9/24/2025, 8:34:26 PM
View record -
User #219 follow Tabitha McKenzie started following you
10/27/2025, 5:46:31 AM
View record -
User #133 follow Raheem Kovacek started following you
11/10/2025, 11:12:45 AM
View record -
User #42 mention Wilton Dietrich mentioned you in a post
12/23/2025, 4:20:33 AM
View record -
User #64 mention Santa Corwin mentioned you in a post
6/14/2025, 4:18:36 PM
View record -
User #159 mention Lamont Schroeder mentioned you in a post
10/28/2025, 3:42:07 PM
View record -
User #192 follow Roma Durgan started following you
3/11/2026, 4:54:12 PM
View record -
User #98 like Guy Christiansen liked your post
7/30/2025, 1:07:51 AM
View record -
User #66 follow Talon Turner started following you
11/27/2025, 7:09:31 AM
View record -
User #44 mention Sheridan Turcotte mentioned you in a post
12/3/2025, 1:35:49 AM
View record -
User #121 mention Myrtie Daniel mentioned you in a post
4/30/2026, 6:36:15 AM
View record -
User #141 like Izaiah Rempel liked your post
5/29/2025, 10:53:13 AM
View record -
User #66 follow Amya Powlowski started following you
3/30/2026, 5:40:01 PM
View record -
User #163 follow General Morissette started following you
1/20/2026, 1:10:45 PM
View record -
User #137 mention Einar Volkman mentioned you in a post
4/13/2026, 6:45:54 PM
View record -
User #213 like Gwendolyn Wyman liked your post
7/14/2025, 11:05:27 AM
View record -
User #15 mention Wallace Batz mentioned you in a post
8/16/2025, 9:30:08 PM
View record -
User #159 reply Tiara Wilderman replied to your comment
10/16/2025, 12:21:39 AM
View record -
User #123 system System notification
11/30/2025, 8:58:21 PM
View record -
User #221 reply Lennie Dickinson replied to your comment
1/21/2026, 11:20:38 PM
View record -
User #200 reply Wallace Batz replied to your comment
9/27/2025, 4:44:31 AM
View record -
User #81 mention Tillman Breitenberg mentioned you in a post
1/6/2026, 9:06:56 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": 913,
"userId": 69,
"type": "system",
"title": "System notification",
"body": "Auditor temptatio utrum.",
"isRead": true,
"link": "https://example.com/system/E3uzCvXm",
"createdAt": "2025-09-15T15:41:23.831Z"
},
{
"id": 914,
"userId": 163,
"type": "mention",
"title": "Cassidy Christiansen mentioned you in a post",
"body": "Aro laboriosam cura alius usus arbustum vis.",
"isRead": true,
"link": "https://example.com/mention/Kgu7vKTZ",
"createdAt": "2025-05-31T02:49:14.566Z"
},
{
"id": 915,
"userId": 129,
"type": "mention",
"title": "Margaretta Barrows mentioned you in a post",
"body": "Titulus thymum cavus auctus.",
"isRead": true,
"link": "https://example.com/mention/D9Fs2nYv",
"createdAt": "2025-09-24T20:34:26.294Z"
}
],
"meta": {
"page": 39,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=39&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=40&limit=24",
"prev": "/api/v1/notifications?page=38&limit=24"
}
}