notifications
notifications
Page 18 of 84.
Overview
-
User #81 reply Charlene Roberts replied to your comment
7/3/2025, 5:13:29 AM
View record -
User #156 reply Wilton Dietrich replied to your comment
11/26/2025, 5:45:41 AM
View record -
User #228 like Jarrell Flatley liked your post
12/8/2025, 9:16:01 AM
View record -
User #138 like Jamal Gerhold liked your post
8/30/2025, 7:07:22 AM
View record -
User #198 follow Leonel Hamill started following you
5/27/2025, 12:49:53 PM
View record -
User #245 follow Jamaal Rolfson started following you
12/13/2025, 10:46:19 AM
View record -
User #8 like Amari Koch liked your post
1/14/2026, 9:09:11 PM
View record -
User #236 mention Jonathan Howe mentioned you in a post
11/7/2025, 3:59:23 AM
View record -
User #226 mention Rosella Homenick mentioned you in a post
12/7/2025, 12:23:22 PM
View record -
User #168 reply Telly Sanford replied to your comment
7/1/2025, 10:04:06 AM
View record -
User #205 system System notification
1/29/2026, 8:10:03 AM
View record -
User #194 system System notification
2/22/2026, 4:27:14 PM
View record -
User #49 follow Jamil Mayer started following you
10/25/2025, 10:29:24 AM
View record -
User #130 follow Lavonne Schmidt started following you
8/12/2025, 4:20:54 PM
View record -
User #27 follow Samson Stroman started following you
1/18/2026, 7:26:54 PM
View record -
User #201 like Edward Jacobson liked your post
6/23/2025, 10:42:59 PM
View record -
User #123 system System notification
10/24/2025, 1:09:34 PM
View record -
User #103 mention Velma Jerde mentioned you in a post
6/20/2025, 3:17:57 PM
View record -
User #12 reply Kevon Dickinson replied to your comment
6/29/2025, 8:23:25 AM
View record -
User #101 reply Nikko Kuhlman replied to your comment
10/13/2025, 5:30:40 PM
View record -
User #171 system System notification
7/30/2025, 1:08:14 PM
View record -
User #195 system System notification
12/6/2025, 7:07:27 PM
View record -
User #2 system System notification
1/5/2026, 10:20:35 PM
View record -
User #102 reply Lew O'Kon replied to your comment
3/5/2026, 1:45:10 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": 409,
"userId": 81,
"type": "reply",
"title": "Charlene Roberts replied to your comment",
"body": "Vix considero avaritia aduro caste.",
"isRead": false,
"link": "https://example.com/reply/iMXeAY_M",
"createdAt": "2025-07-03T05:13:29.335Z"
},
{
"id": 410,
"userId": 156,
"type": "reply",
"title": "Wilton Dietrich replied to your comment",
"body": "Custodia creptio balbus canonicus.",
"isRead": true,
"link": "https://example.com/reply/7_ZezQNw",
"createdAt": "2025-11-26T05:45:41.958Z"
},
{
"id": 411,
"userId": 228,
"type": "like",
"title": "Jarrell Flatley liked your post",
"body": "Voluptatibus neque addo ustulo defero voluntarius.",
"isRead": false,
"link": "https://example.com/like/Taeoz1t_",
"createdAt": "2025-12-08T09:16:01.549Z"
}
],
"meta": {
"page": 18,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=18&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=19&limit=24",
"prev": "/api/v1/notifications?page=17&limit=24"
}
}