notifications
notifications
Page 36 of 84.
Overview
-
User #139 like Arnaldo Friesen liked your post
7/7/2025, 9:04:19 AM
View record -
User #172 reply Alexa Rippin replied to your comment
12/24/2025, 1:03:05 PM
View record -
User #67 follow Santa Corwin started following you
11/13/2025, 8:08:31 AM
View record -
User #216 system System notification
9/15/2025, 11:21:01 PM
View record -
User #136 follow Van Crona started following you
6/27/2025, 2:41:48 PM
View record -
User #159 mention Jennifer Stoltenberg mentioned you in a post
1/9/2026, 1:50:58 AM
View record -
User #156 mention Maryam Kunze mentioned you in a post
5/14/2026, 9:29:38 AM
View record -
User #130 like Virginie O'Connell liked your post
4/7/2026, 9:10:22 AM
View record -
User #96 follow Sammy Schmidt started following you
3/5/2026, 12:04:05 AM
View record -
User #79 mention Norbert Jacobi mentioned you in a post
1/10/2026, 9:28:13 PM
View record -
User #33 like Kaden Brekke liked your post
7/13/2025, 7:37:05 AM
View record -
User #160 reply Trace Witting-Stamm replied to your comment
3/30/2026, 10:13:19 PM
View record -
User #238 like Earlene Wisozk liked your post
7/9/2025, 2:07:09 AM
View record -
User #245 like Rickie Sporer liked your post
5/25/2025, 11:43:15 PM
View record -
User #137 follow Chyna Kozey started following you
11/7/2025, 7:42:36 PM
View record -
User #40 like Oran Torphy liked your post
4/17/2026, 1:14:19 PM
View record -
User #230 reply Fatima Dicki replied to your comment
3/20/2026, 7:14:36 PM
View record -
User #34 system System notification
12/15/2025, 3:15:13 PM
View record -
User #221 reply Lenny Howe replied to your comment
8/19/2025, 12:23:39 AM
View record -
User #68 follow Selina Flatley started following you
6/28/2025, 8:58:33 AM
View record -
User #90 system System notification
3/17/2026, 6:14:45 PM
View record -
User #214 system System notification
9/15/2025, 4:32:18 PM
View record -
User #167 mention Wendy Borer mentioned you in a post
2/7/2026, 9:53:56 AM
View record -
User #42 reply Sonia Nolan replied to your comment
3/13/2026, 3:04:41 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": 841,
"userId": 139,
"type": "like",
"title": "Arnaldo Friesen liked your post",
"body": "Amissio verto dapifer.",
"isRead": true,
"link": "https://example.com/like/8oDJlyxb",
"createdAt": "2025-07-07T09:04:19.343Z"
},
{
"id": 842,
"userId": 172,
"type": "reply",
"title": "Alexa Rippin replied to your comment",
"body": "Sint thema stabilis ustulo cupio denuo temperantia cognatus vado congregatio.",
"isRead": false,
"link": "https://example.com/reply/Xl1R0x46",
"createdAt": "2025-12-24T13:03:05.524Z"
},
{
"id": 843,
"userId": 67,
"type": "follow",
"title": "Santa Corwin started following you",
"body": "Coepi architecto viridis studio adiuvo depromo.",
"isRead": false,
"link": "https://example.com/follow/BSWovJPb",
"createdAt": "2025-11-13T08:08:31.037Z"
}
],
"meta": {
"page": 36,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=36&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=37&limit=24",
"prev": "/api/v1/notifications?page=35&limit=24"
}
}