notifications
notifications
Page 77 of 84.
Overview
-
User #43 follow Marta Harvey started following you
10/20/2025, 10:59:26 AM
View record -
User #167 like Diana Murazik liked your post
11/23/2025, 11:07:30 AM
View record -
User #137 mention Roberta Mueller-Yundt mentioned you in a post
5/26/2025, 5:48:32 AM
View record -
User #70 like Monte Botsford liked your post
11/13/2025, 10:01:29 PM
View record -
User #7 system System notification
12/22/2025, 7:35:08 AM
View record -
User #60 follow Amari Koch started following you
10/3/2025, 6:44:15 PM
View record -
User #151 system System notification
6/12/2025, 8:48:56 PM
View record -
User #240 system System notification
6/13/2025, 3:37:34 PM
View record -
User #141 follow Maymie Boehm started following you
12/8/2025, 11:48:51 AM
View record -
User #22 like Kaden Brekke liked your post
1/22/2026, 4:26:15 AM
View record -
User #212 reply Selina Flatley replied to your comment
7/21/2025, 11:56:53 AM
View record -
User #119 system System notification
5/31/2025, 7:27:17 AM
View record -
User #7 like Raheem Kovacek liked your post
2/2/2026, 3:10:18 AM
View record -
User #168 reply Allan Buckridge replied to your comment
9/27/2025, 4:54:06 PM
View record -
User #42 reply Karlee Hudson-Turner replied to your comment
2/5/2026, 2:50:03 PM
View record -
User #12 system System notification
12/30/2025, 7:46:50 PM
View record -
User #199 mention Anne Hamill mentioned you in a post
7/13/2025, 4:47:39 PM
View record -
User #161 system System notification
4/7/2026, 1:56:18 PM
View record -
User #205 reply Mara Johnson replied to your comment
1/21/2026, 7:11:08 PM
View record -
User #238 reply Dasia Volkman replied to your comment
4/7/2026, 6:17:53 PM
View record -
User #58 reply Hermina West replied to your comment
1/20/2026, 1:07:59 AM
View record -
User #113 reply Oliver Mitchell replied to your comment
3/21/2026, 10:13:10 PM
View record -
User #191 follow Conner Bernhard started following you
7/21/2025, 3:56:29 AM
View record -
User #169 follow Webster Skiles started following you
3/14/2026, 10:24:01 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": 1825,
"userId": 43,
"type": "follow",
"title": "Marta Harvey started following you",
"body": "Sum vere trans antiquus.",
"isRead": true,
"link": "https://example.com/follow/gAZxQzpO",
"createdAt": "2025-10-20T10:59:26.574Z"
},
{
"id": 1826,
"userId": 167,
"type": "like",
"title": "Diana Murazik liked your post",
"body": "Depulso volup thema minima venustas spargo caritas.",
"isRead": false,
"link": "https://example.com/like/SeyD8g3L",
"createdAt": "2025-11-23T11:07:30.711Z"
},
{
"id": 1827,
"userId": 137,
"type": "mention",
"title": "Roberta Mueller-Yundt mentioned you in a post",
"body": "Ceno sint solus victus cado.",
"isRead": true,
"link": null,
"createdAt": "2025-05-26T05:48:32.992Z"
}
],
"meta": {
"page": 77,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=77&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=78&limit=24",
"prev": "/api/v1/notifications?page=76&limit=24"
}
}