notifications
notifications
Page 11 of 84.
Overview
-
User #116 follow Leora Doyle started following you
9/29/2025, 7:20:54 PM
View record -
User #114 mention Gudrun Brakus mentioned you in a post
1/27/2026, 4:42:19 AM
View record -
User #201 mention Sheridan Turcotte mentioned you in a post
5/18/2026, 1:11:03 AM
View record -
User #88 follow Adelia Roberts started following you
6/19/2025, 4:38:48 PM
View record -
User #175 follow Mike Zemlak started following you
9/7/2025, 12:07:59 PM
View record -
User #83 like Camron O'Conner liked your post
7/1/2025, 9:15:16 PM
View record -
User #67 reply Tiara Wilderman replied to your comment
10/7/2025, 4:21:36 PM
View record -
User #156 like Cassidy Price-Schimmel liked your post
3/2/2026, 11:04:12 PM
View record -
User #73 like Candace Mueller liked your post
2/15/2026, 3:24:37 AM
View record -
User #82 like Joseph Steuber liked your post
6/19/2025, 12:02:45 PM
View record -
User #69 system System notification
2/2/2026, 2:00:57 AM
View record -
User #102 reply Adrain Kris-Hermiston replied to your comment
1/27/2026, 5:30:16 AM
View record -
User #78 reply Michale Hilpert replied to your comment
10/29/2025, 10:09:08 PM
View record -
User #116 like Theresia Collins liked your post
6/11/2025, 11:00:40 PM
View record -
User #105 follow Merl Jenkins started following you
10/11/2025, 1:36:08 PM
View record -
User #142 follow Charlene Kuhic started following you
5/8/2026, 3:34:38 AM
View record -
User #51 system System notification
1/10/2026, 11:12:33 AM
View record -
User #204 reply Emilia Cummerata replied to your comment
3/24/2026, 2:13:24 AM
View record -
User #16 reply Jennifer Stoltenberg replied to your comment
12/12/2025, 9:56:23 PM
View record -
User #88 follow Ressie Howell-Hodkiewicz started following you
11/2/2025, 12:02:49 PM
View record -
User #32 reply Santa Corwin replied to your comment
8/10/2025, 7:23:22 AM
View record -
User #234 like Karlee MacGyver liked your post
6/5/2025, 7:56:30 AM
View record -
User #118 follow Selina Flatley started following you
1/21/2026, 6:56:54 AM
View record -
User #194 follow Dasia Volkman started following you
12/14/2025, 11:22:43 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": 241,
"userId": 116,
"type": "follow",
"title": "Leora Doyle started following you",
"body": "Supellex carmen campana adsidue voro.",
"isRead": false,
"link": "https://example.com/follow/tCv_56Hl",
"createdAt": "2025-09-29T19:20:54.516Z"
},
{
"id": 242,
"userId": 114,
"type": "mention",
"title": "Gudrun Brakus mentioned you in a post",
"body": "Amissio quidem derideo censura aliqua blanditiis varietas alias error.",
"isRead": true,
"link": "https://example.com/mention/_UGvBRxd",
"createdAt": "2026-01-27T04:42:19.043Z"
},
{
"id": 243,
"userId": 201,
"type": "mention",
"title": "Sheridan Turcotte mentioned you in a post",
"body": "Arbitro pauci varius fugiat voveo tonsor adfectus.",
"isRead": true,
"link": "https://example.com/mention/mKsq-k9E",
"createdAt": "2026-05-18T01:11:03.059Z"
}
],
"meta": {
"page": 11,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=11&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=12&limit=24",
"prev": "/api/v1/notifications?page=10&limit=24"
}
}