notifications
notifications
Page 31 of 84.
Overview
-
User #62 system System notification
11/29/2025, 9:05:56 PM
View record -
User #114 follow Koby Pouros started following you
3/1/2026, 10:09:38 PM
View record -
User #133 system System notification
9/12/2025, 12:27:06 PM
View record -
User #38 follow Trace Witting-Stamm started following you
5/14/2026, 4:38:44 PM
View record -
User #52 follow Melvina Reilly started following you
8/6/2025, 1:05:46 PM
View record -
User #15 reply Jamaal Rolfson replied to your comment
12/28/2025, 11:21:00 PM
View record -
User #125 system System notification
8/23/2025, 7:09:37 PM
View record -
User #5 like Marcelina Grady liked your post
8/22/2025, 12:29:56 PM
View record -
User #203 reply Alexander Beahan replied to your comment
9/3/2025, 7:56:17 AM
View record -
User #177 like Roosevelt Ullrich liked your post
11/3/2025, 10:34:25 AM
View record -
User #25 system System notification
9/21/2025, 9:35:16 PM
View record -
User #89 reply Maria Senger replied to your comment
9/18/2025, 9:44:08 AM
View record -
User #151 follow Antoinette Greenfelder started following you
1/5/2026, 6:03:37 AM
View record -
User #212 system System notification
8/25/2025, 5:51:23 PM
View record -
User #103 system System notification
4/10/2026, 11:16:39 PM
View record -
User #133 like Judy Hackett liked your post
3/6/2026, 5:51:10 AM
View record -
User #18 mention Joseph Nitzsche mentioned you in a post
10/11/2025, 10:02:50 AM
View record -
User #73 mention Mathilde Ziemann-Nienow mentioned you in a post
4/19/2026, 4:46:53 AM
View record -
User #247 system System notification
2/15/2026, 7:49:55 PM
View record -
User #112 like Pinkie Denesik liked your post
9/17/2025, 1:50:08 PM
View record -
User #114 reply Sammy Schmidt replied to your comment
7/20/2025, 1:24:50 PM
View record -
User #100 system System notification
1/26/2026, 6:04:38 AM
View record -
User #28 system System notification
11/15/2025, 12:08:24 PM
View record -
User #87 reply Maria Senger replied to your comment
5/12/2026, 9:37:27 AM
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": 721,
"userId": 62,
"type": "system",
"title": "System notification",
"body": "Defessus arcesso custodia sopor a solutio suffragium delego crudelis.",
"isRead": false,
"link": "https://example.com/system/bqiC3lc5",
"createdAt": "2025-11-29T21:05:56.604Z"
},
{
"id": 722,
"userId": 114,
"type": "follow",
"title": "Koby Pouros started following you",
"body": "Conservo civitas decor ullus arbitro copia conqueror urbs.",
"isRead": true,
"link": null,
"createdAt": "2026-03-01T22:09:38.136Z"
},
{
"id": 723,
"userId": 133,
"type": "system",
"title": "System notification",
"body": "Vaco creber vereor advenio vehemens caecus.",
"isRead": false,
"link": "https://example.com/system/ftt86QEp",
"createdAt": "2025-09-12T12:27:06.311Z"
}
],
"meta": {
"page": 31,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=31&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=32&limit=24",
"prev": "/api/v1/notifications?page=30&limit=24"
}
}