notifications
notifications
Page 79 of 84.
Overview
-
User #30 system System notification
10/5/2025, 6:19:47 AM
View record -
User #154 system System notification
3/6/2026, 3:12:42 AM
View record -
User #220 mention Vida Kunde-Koepp mentioned you in a post
11/15/2025, 1:02:50 AM
View record -
User #157 system System notification
6/18/2025, 1:36:32 AM
View record -
User #179 reply Sheridan Turcotte replied to your comment
9/11/2025, 8:16:26 PM
View record -
User #125 follow Nikolas Wolf started following you
7/11/2025, 12:48:05 AM
View record -
User #204 mention Jacynthe Sawayn mentioned you in a post
2/22/2026, 2:45:05 AM
View record -
User #121 mention Vidal Parker mentioned you in a post
8/27/2025, 4:26:09 PM
View record -
User #218 follow Roosevelt Ullrich started following you
10/30/2025, 9:41:19 AM
View record -
User #10 like Rosella Homenick liked your post
6/9/2025, 2:20:19 AM
View record -
User #54 reply Amely Daniel replied to your comment
1/21/2026, 11:22:48 PM
View record -
User #13 follow Diana Murazik started following you
8/9/2025, 7:14:23 PM
View record -
User #154 like Carley Gleichner liked your post
2/14/2026, 2:19:36 PM
View record -
User #10 follow Perry Kerluke started following you
5/4/2026, 8:16:23 AM
View record -
User #178 reply Ericka DuBuque replied to your comment
12/18/2025, 9:53:51 PM
View record -
User #72 mention Telly Sanford mentioned you in a post
7/13/2025, 4:47:02 PM
View record -
User #219 follow Lazaro Herzog started following you
8/21/2025, 3:48:57 AM
View record -
User #245 follow Alvina Koch started following you
12/15/2025, 3:38:54 PM
View record -
User #119 follow Karlee MacGyver started following you
2/7/2026, 11:37:10 AM
View record -
User #41 mention Earnestine Dickinson mentioned you in a post
3/20/2026, 7:58:33 AM
View record -
User #11 mention Maria Senger mentioned you in a post
7/16/2025, 7:08:33 PM
View record -
User #186 system System notification
6/28/2025, 2:26:53 PM
View record -
User #165 like Adelia Roberts liked your post
4/8/2026, 7:54:23 AM
View record -
User #19 reply Marta Harvey replied to your comment
5/23/2025, 5:57:36 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": 1873,
"userId": 30,
"type": "system",
"title": "System notification",
"body": "Vesica caterva cohaero trepide alo.",
"isRead": false,
"link": "https://example.com/system/oKEo0-sQ",
"createdAt": "2025-10-05T06:19:47.693Z"
},
{
"id": 1874,
"userId": 154,
"type": "system",
"title": "System notification",
"body": "Temporibus caterva usitas crur coerceo sulum tabgo adaugeo tergeo argentum.",
"isRead": false,
"link": null,
"createdAt": "2026-03-06T03:12:42.546Z"
},
{
"id": 1875,
"userId": 220,
"type": "mention",
"title": "Vida Kunde-Koepp mentioned you in a post",
"body": "Magni a cras suscipio vivo tabella umbra.",
"isRead": true,
"link": "https://example.com/mention/uJHvfaej",
"createdAt": "2025-11-15T01:02:50.889Z"
}
],
"meta": {
"page": 79,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=79&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=80&limit=24",
"prev": "/api/v1/notifications?page=78&limit=24"
}
}