notifications
notifications
Page 21 of 84.
Overview
-
User #85 follow Carmel Schultz started following you
3/26/2026, 3:01:05 PM
View record -
User #216 reply Edward Jacobson replied to your comment
4/2/2026, 7:46:57 AM
View record -
User #159 system System notification
3/24/2026, 3:16:16 AM
View record -
User #162 reply Orrin Grant replied to your comment
1/20/2026, 11:15:48 AM
View record -
User #12 system System notification
10/27/2025, 1:00:01 AM
View record -
User #15 system System notification
7/15/2025, 10:55:56 AM
View record -
User #29 mention Casimir Smitham mentioned you in a post
2/15/2026, 12:14:10 AM
View record -
User #24 like Matt Kuhic liked your post
8/20/2025, 8:23:52 PM
View record -
User #192 like Jo Haag-Mayer liked your post
6/3/2025, 3:18:14 PM
View record -
User #51 mention Wilton Dietrich mentioned you in a post
11/21/2025, 1:47:30 PM
View record -
User #137 reply Lacy Gusikowski replied to your comment
4/9/2026, 1:13:12 PM
View record -
User #85 like Maryam Kunze liked your post
7/14/2025, 11:14:18 AM
View record -
User #103 mention Ericka DuBuque mentioned you in a post
4/19/2026, 12:13:24 AM
View record -
User #23 follow Americo Hoppe started following you
7/11/2025, 2:08:06 PM
View record -
User #136 like Dovie Gorczany liked your post
8/16/2025, 2:52:43 PM
View record -
User #250 follow Chyna Kozey started following you
6/2/2025, 10:00:54 PM
View record -
User #228 system System notification
12/2/2025, 2:29:30 PM
View record -
User #138 mention Jolie Abernathy mentioned you in a post
5/13/2026, 6:12:10 AM
View record -
User #41 system System notification
5/8/2026, 8:51:45 AM
View record -
User #174 mention Leonor Corwin mentioned you in a post
2/24/2026, 10:49:48 AM
View record -
User #110 mention Jamal Gerhold mentioned you in a post
8/7/2025, 11:22:13 PM
View record -
User #139 system System notification
3/9/2026, 8:35:46 AM
View record -
User #127 like Green Kozey liked your post
10/8/2025, 12:17:35 PM
View record -
User #23 mention Marcelina Grady mentioned you in a post
12/27/2025, 9:05:15 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": 481,
"userId": 85,
"type": "follow",
"title": "Carmel Schultz started following you",
"body": "Capio cura ater casso adversus tubineus.",
"isRead": true,
"link": "https://example.com/follow/9kTw2rkn",
"createdAt": "2026-03-26T15:01:05.433Z"
},
{
"id": 482,
"userId": 216,
"type": "reply",
"title": "Edward Jacobson replied to your comment",
"body": "Molestiae suasoria labore subiungo.",
"isRead": false,
"link": "https://example.com/reply/TSKiP4rb",
"createdAt": "2026-04-02T07:46:57.871Z"
},
{
"id": 483,
"userId": 159,
"type": "system",
"title": "System notification",
"body": "Eum amitto temperantia ciminatio comitatus.",
"isRead": true,
"link": "https://example.com/system/PTwoIr9G",
"createdAt": "2026-03-24T03:16:16.746Z"
}
],
"meta": {
"page": 21,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=21&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=22&limit=24",
"prev": "/api/v1/notifications?page=20&limit=24"
}
}