notifications
notifications
Page 75 of 84.
Overview
-
User #100 mention Karlee MacGyver mentioned you in a post
10/2/2025, 9:57:57 PM
View record -
User #159 like Jolie Abernathy liked your post
1/15/2026, 2:33:12 AM
View record -
User #105 system System notification
12/26/2025, 7:31:53 PM
View record -
User #235 system System notification
10/31/2025, 4:37:19 AM
View record -
User #124 like Mara Johnson liked your post
1/30/2026, 9:12:53 PM
View record -
User #33 like Monte Botsford liked your post
3/4/2026, 12:38:01 PM
View record -
User #87 reply Trace Witting-Stamm replied to your comment
2/20/2026, 6:24:59 PM
View record -
User #49 like Einar Volkman liked your post
5/22/2025, 2:35:35 AM
View record -
User #228 reply Sheridan Turcotte replied to your comment
11/25/2025, 6:02:06 AM
View record -
User #179 follow Monte Botsford started following you
12/18/2025, 3:08:17 PM
View record -
User #228 like Myrl Pollich liked your post
9/7/2025, 7:46:00 PM
View record -
User #73 reply Aylin Sanford replied to your comment
9/4/2025, 2:16:45 PM
View record -
User #247 reply Diana Murazik replied to your comment
7/28/2025, 8:54:41 PM
View record -
User #35 mention Mia Renner mentioned you in a post
7/27/2025, 2:45:16 AM
View record -
User #178 mention Santa Corwin mentioned you in a post
11/15/2025, 10:12:21 PM
View record -
User #11 reply Wade Upton replied to your comment
3/17/2026, 6:40:01 AM
View record -
User #18 reply Hilda Crooks replied to your comment
4/11/2026, 7:16:15 PM
View record -
User #77 reply Ludwig Stiedemann replied to your comment
6/11/2025, 12:57:11 PM
View record -
User #60 follow Abdul Rau started following you
4/15/2026, 1:58:51 PM
View record -
User #49 mention Amparo Dietrich mentioned you in a post
8/2/2025, 7:33:07 AM
View record -
User #126 reply Jermain Kshlerin replied to your comment
6/27/2025, 6:16:57 AM
View record -
User #249 mention Mara Johnson mentioned you in a post
2/24/2026, 12:05:47 PM
View record -
User #25 like Matt Kuhic liked your post
10/28/2025, 12:57:12 AM
View record -
User #41 like Joseph Nitzsche liked your post
2/7/2026, 5:48:17 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": 1777,
"userId": 100,
"type": "mention",
"title": "Karlee MacGyver mentioned you in a post",
"body": "Tenus tribuo in earum tergo.",
"isRead": true,
"link": null,
"createdAt": "2025-10-02T21:57:57.888Z"
},
{
"id": 1778,
"userId": 159,
"type": "like",
"title": "Jolie Abernathy liked your post",
"body": "Calcar corporis una eaque inflammatio conspergo venio admoneo delego carpo.",
"isRead": false,
"link": "https://example.com/like/StHbwfSU",
"createdAt": "2026-01-15T02:33:12.802Z"
},
{
"id": 1779,
"userId": 105,
"type": "system",
"title": "System notification",
"body": "Altus corona vitae sperno damno claro conscendo.",
"isRead": false,
"link": "https://example.com/system/6lPboRxR",
"createdAt": "2025-12-26T19:31:53.772Z"
}
],
"meta": {
"page": 75,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=75&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=76&limit=24",
"prev": "/api/v1/notifications?page=74&limit=24"
}
}