notifications
notifications
Page 44 of 84.
Overview
-
User #172 mention Adan Weber mentioned you in a post
2/16/2026, 10:44:57 PM
View record -
User #115 follow Carroll Wisozk started following you
4/1/2026, 5:09:56 AM
View record -
User #31 system System notification
2/7/2026, 7:56:35 PM
View record -
User #219 system System notification
6/6/2025, 1:32:20 AM
View record -
User #135 system System notification
4/5/2026, 2:23:57 AM
View record -
User #6 reply Camron O'Conner replied to your comment
10/7/2025, 6:55:19 AM
View record -
User #60 system System notification
1/12/2026, 1:26:09 PM
View record -
User #67 follow Adrain Kris-Hermiston started following you
3/12/2026, 3:52:43 AM
View record -
User #118 system System notification
7/17/2025, 6:07:56 PM
View record -
User #50 like Marlin Goldner liked your post
12/1/2025, 1:41:04 PM
View record -
User #197 reply Abdul Rau replied to your comment
6/10/2025, 10:32:43 AM
View record -
User #150 like Earlene Wisozk liked your post
10/11/2025, 4:35:37 PM
View record -
User #18 follow Porter Dooley started following you
10/24/2025, 3:51:54 AM
View record -
User #125 like Allan Buckridge liked your post
9/30/2025, 6:55:28 PM
View record -
User #239 like Lazaro Rath liked your post
10/24/2025, 1:37:13 PM
View record -
User #195 mention Maria Senger mentioned you in a post
4/25/2026, 12:55:49 AM
View record -
User #101 reply Lennie Dickinson replied to your comment
6/12/2025, 7:48:50 PM
View record -
User #199 like Mazie Douglas liked your post
4/29/2026, 7:46:17 PM
View record -
User #51 system System notification
6/7/2025, 5:21:17 PM
View record -
User #118 follow Ken Towne started following you
2/13/2026, 4:32:33 AM
View record -
User #155 mention Jamaal Rolfson mentioned you in a post
10/20/2025, 9:00:38 AM
View record -
User #230 mention Amina King mentioned you in a post
4/10/2026, 9:26:19 PM
View record -
User #55 system System notification
6/4/2025, 9:50:58 AM
View record -
User #223 mention Lacy Gusikowski mentioned you in a post
3/18/2026, 10:25:51 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": 1033,
"userId": 172,
"type": "mention",
"title": "Adan Weber mentioned you in a post",
"body": "Terminatio aestivus verus.",
"isRead": false,
"link": "https://example.com/mention/Rm4dK79T",
"createdAt": "2026-02-16T22:44:57.523Z"
},
{
"id": 1034,
"userId": 115,
"type": "follow",
"title": "Carroll Wisozk started following you",
"body": "Absorbeo odio surculus fuga traho tactus doloribus ter.",
"isRead": true,
"link": "https://example.com/follow/X10190S8",
"createdAt": "2026-04-01T05:09:56.537Z"
},
{
"id": 1035,
"userId": 31,
"type": "system",
"title": "System notification",
"body": "Victoria sperno thymbra cicuta iusto vaco vesica calco.",
"isRead": true,
"link": "https://example.com/system/OoOWONBN",
"createdAt": "2026-02-07T19:56:35.019Z"
}
],
"meta": {
"page": 44,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=44&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=45&limit=24",
"prev": "/api/v1/notifications?page=43&limit=24"
}
}