notifications
notifications
Page 48 of 84.
Overview
-
User #126 mention Alexander Beahan mentioned you in a post
4/12/2026, 3:56:17 AM
View record -
User #130 reply Hortense Cruickshank replied to your comment
4/11/2026, 12:39:16 AM
View record -
User #126 reply Jaylon Conroy replied to your comment
7/13/2025, 10:15:13 PM
View record -
User #185 system System notification
10/3/2025, 11:15:59 AM
View record -
User #33 like Casimir Smitham liked your post
11/9/2025, 5:40:30 PM
View record -
User #108 system System notification
11/8/2025, 1:49:31 AM
View record -
User #113 follow Minerva Hettinger started following you
6/29/2025, 8:11:32 AM
View record -
User #58 mention Perry Kerluke mentioned you in a post
6/4/2025, 8:24:01 AM
View record -
User #234 mention Jennifer Stoltenberg mentioned you in a post
9/5/2025, 7:32:23 PM
View record -
User #166 mention Mateo Gerlach mentioned you in a post
1/1/2026, 10:12:37 PM
View record -
User #164 reply Theresia Collins replied to your comment
3/26/2026, 12:15:58 PM
View record -
User #171 system System notification
1/19/2026, 7:23:21 PM
View record -
User #152 mention Conrad Connelly mentioned you in a post
9/15/2025, 8:54:32 AM
View record -
User #115 reply Rupert Lebsack replied to your comment
5/7/2026, 11:28:09 AM
View record -
User #196 mention Cassidy Price-Schimmel mentioned you in a post
6/20/2025, 4:52:50 AM
View record -
User #100 system System notification
6/7/2025, 1:28:04 PM
View record -
User #203 mention Americo Hoppe mentioned you in a post
10/5/2025, 3:15:44 AM
View record -
User #22 system System notification
4/15/2026, 1:33:19 PM
View record -
User #8 follow Roberta Mueller-Yundt started following you
9/1/2025, 5:44:00 PM
View record -
User #84 system System notification
5/25/2025, 2:50:12 AM
View record -
User #58 follow Era Mitchell started following you
7/17/2025, 11:20:58 PM
View record -
User #82 reply Matt Kuhic replied to your comment
2/28/2026, 2:36:28 AM
View record -
User #243 reply Gerda Streich replied to your comment
10/19/2025, 7:04:24 PM
View record -
User #174 system System notification
3/5/2026, 7:12:31 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": 1129,
"userId": 126,
"type": "mention",
"title": "Alexander Beahan mentioned you in a post",
"body": "Timor verecundia conscendo.",
"isRead": true,
"link": "https://example.com/mention/lm5f8AaF",
"createdAt": "2026-04-12T03:56:17.266Z"
},
{
"id": 1130,
"userId": 130,
"type": "reply",
"title": "Hortense Cruickshank replied to your comment",
"body": "Cariosus arceo quod officia dens.",
"isRead": false,
"link": "https://example.com/reply/iJgn1aJk",
"createdAt": "2026-04-11T00:39:16.130Z"
},
{
"id": 1131,
"userId": 126,
"type": "reply",
"title": "Jaylon Conroy replied to your comment",
"body": "Crepusculum vinum artificiose consuasor magni asper.",
"isRead": false,
"link": "https://example.com/reply/PWnERbdv",
"createdAt": "2025-07-13T22:15:13.546Z"
}
],
"meta": {
"page": 48,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=48&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=49&limit=24",
"prev": "/api/v1/notifications?page=47&limit=24"
}
}