notifications
notifications
Page 68 of 84.
Overview
-
User #18 like Earnestine Dickinson liked your post
11/6/2025, 9:48:13 AM
View record -
User #202 system System notification
10/13/2025, 8:44:26 PM
View record -
User #136 follow Mara Johnson started following you
1/31/2026, 10:15:02 PM
View record -
User #133 like Chyna Kozey liked your post
6/6/2025, 2:54:28 AM
View record -
User #249 follow Earnestine Dickinson started following you
2/7/2026, 11:34:16 AM
View record -
User #204 reply Lazaro Rath replied to your comment
7/7/2025, 2:10:06 PM
View record -
User #149 system System notification
9/15/2025, 1:50:13 PM
View record -
User #31 system System notification
2/25/2026, 7:33:08 PM
View record -
User #82 like General Morissette liked your post
6/21/2025, 9:52:10 PM
View record -
User #36 mention Tillman Breitenberg mentioned you in a post
9/8/2025, 5:30:59 PM
View record -
User #204 follow Matt Kuhic started following you
3/9/2026, 7:25:12 PM
View record -
User #203 mention Maximus Bosco mentioned you in a post
7/25/2025, 4:24:34 AM
View record -
User #113 like Leonor Corwin liked your post
8/2/2025, 10:47:27 PM
View record -
User #229 system System notification
1/24/2026, 9:10:12 PM
View record -
User #219 system System notification
7/5/2025, 1:05:29 AM
View record -
User #87 like Phyllis Hyatt liked your post
9/25/2025, 8:31:27 PM
View record -
User #50 follow Loren Schmidt started following you
5/7/2026, 2:15:09 AM
View record -
User #33 mention Velma Jerde mentioned you in a post
5/5/2026, 10:44:09 AM
View record -
User #39 mention Elva Roberts mentioned you in a post
7/1/2025, 2:09:49 AM
View record -
User #143 like Mazie Douglas liked your post
5/25/2025, 3:46:27 AM
View record -
User #69 like Rickie Sporer liked your post
4/23/2026, 6:56:39 AM
View record -
User #67 reply Maymie Boehm replied to your comment
1/1/2026, 12:17:42 AM
View record -
User #167 system System notification
3/15/2026, 3:56:45 PM
View record -
User #83 follow Ari Howe started following you
11/12/2025, 8:15:41 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": 1609,
"userId": 18,
"type": "like",
"title": "Earnestine Dickinson liked your post",
"body": "Dolores colligo tyrannus speciosus tristis coniecto nesciunt.",
"isRead": true,
"link": null,
"createdAt": "2025-11-06T09:48:13.826Z"
},
{
"id": 1610,
"userId": 202,
"type": "system",
"title": "System notification",
"body": "Vociferor exercitationem porro conitor tego tabella bardus cibus comparo ullam.",
"isRead": false,
"link": null,
"createdAt": "2025-10-13T20:44:26.903Z"
},
{
"id": 1611,
"userId": 136,
"type": "follow",
"title": "Mara Johnson started following you",
"body": "Blandior culpo volubilis patria vulnero caveo.",
"isRead": true,
"link": "https://example.com/follow/ZSJ8i5kG",
"createdAt": "2026-01-31T22:15:02.985Z"
}
],
"meta": {
"page": 68,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=68&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=69&limit=24",
"prev": "/api/v1/notifications?page=67&limit=24"
}
}