notifications
notifications
Page 30 of 84.
Overview
-
User #6 system System notification
9/8/2025, 10:28:53 AM
View record -
User #201 like Claudie Hagenes liked your post
11/26/2025, 7:38:58 PM
View record -
User #85 mention Trace Witting-Stamm mentioned you in a post
2/13/2026, 11:02:53 AM
View record -
User #208 mention Lew O'Kon mentioned you in a post
12/31/2025, 11:24:14 AM
View record -
User #119 mention Ludwig Stiedemann mentioned you in a post
10/13/2025, 10:10:13 PM
View record -
User #36 follow Della Labadie started following you
6/12/2025, 11:28:36 AM
View record -
User #152 mention Kathleen Lynch mentioned you in a post
7/6/2025, 5:11:01 PM
View record -
User #214 system System notification
3/6/2026, 9:36:49 PM
View record -
User #100 mention Dwight Dicki-Medhurst mentioned you in a post
12/30/2025, 8:57:18 AM
View record -
User #10 mention Daren Lockman mentioned you in a post
7/25/2025, 1:18:44 PM
View record -
User #194 mention Gavin Lowe mentioned you in a post
3/8/2026, 2:44:58 AM
View record -
User #41 like Phyllis Hyatt liked your post
2/26/2026, 7:02:10 AM
View record -
User #65 system System notification
7/22/2025, 9:35:55 PM
View record -
User #188 follow Hortense Cruickshank started following you
5/9/2026, 6:20:01 PM
View record -
User #22 reply Charity Crona replied to your comment
3/3/2026, 10:03:41 PM
View record -
User #23 like Amparo Dietrich liked your post
6/7/2025, 8:33:43 AM
View record -
User #178 mention Dovie Gorczany mentioned you in a post
3/10/2026, 1:10:09 AM
View record -
User #189 follow Sammy Schmidt started following you
1/22/2026, 8:38:07 PM
View record -
User #167 reply Lennie Dickinson replied to your comment
9/12/2025, 1:49:48 AM
View record -
User #97 system System notification
3/6/2026, 5:14:23 PM
View record -
User #149 like Alex Lang liked your post
10/30/2025, 3:18:53 AM
View record -
User #223 mention Chyna Kozey mentioned you in a post
11/17/2025, 10:36:46 PM
View record -
User #118 system System notification
11/18/2025, 10:52:47 AM
View record -
User #101 follow Aaron Fritsch started following you
5/7/2026, 2:05:18 PM
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": 697,
"userId": 6,
"type": "system",
"title": "System notification",
"body": "Voro inflammatio defendo amissio animus crinis.",
"isRead": true,
"link": "https://example.com/system/QCv_sdj9",
"createdAt": "2025-09-08T10:28:53.289Z"
},
{
"id": 698,
"userId": 201,
"type": "like",
"title": "Claudie Hagenes liked your post",
"body": "Est vir tego ultio quaerat tandem amita.",
"isRead": true,
"link": "https://example.com/like/hryMPuXD",
"createdAt": "2025-11-26T19:38:58.926Z"
},
{
"id": 699,
"userId": 85,
"type": "mention",
"title": "Trace Witting-Stamm mentioned you in a post",
"body": "Subseco abduco rem circumvenio nam calamitas thesis quibusdam beneficium speculum.",
"isRead": false,
"link": "https://example.com/mention/NBzpEgYM",
"createdAt": "2026-02-13T11:02:53.901Z"
}
],
"meta": {
"page": 30,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=30&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=31&limit=24",
"prev": "/api/v1/notifications?page=29&limit=24"
}
}