notifications
notifications
Page 78 of 84.
Overview
-
User #58 mention Claudie Hagenes mentioned you in a post
8/29/2025, 2:16:47 PM
View record -
User #190 mention Lenny Howe mentioned you in a post
9/4/2025, 9:01:14 AM
View record -
User #246 follow Douglas Frami started following you
5/14/2026, 12:58:32 PM
View record -
User #191 follow Conrad Connelly started following you
12/21/2025, 4:22:07 AM
View record -
User #220 follow Sammy Schmidt started following you
10/6/2025, 4:13:59 PM
View record -
User #69 reply Mia Renner replied to your comment
6/13/2025, 4:52:39 PM
View record -
User #143 follow Jennifer Hoeger started following you
11/11/2025, 11:11:28 AM
View record -
User #56 mention Daisy Kuhic mentioned you in a post
2/16/2026, 2:11:39 PM
View record -
User #215 mention Leonor Corwin mentioned you in a post
2/27/2026, 7:51:13 PM
View record -
User #121 reply Carmel Schultz replied to your comment
7/22/2025, 5:03:37 PM
View record -
User #44 follow Melba Collier started following you
7/31/2025, 7:03:34 AM
View record -
User #222 follow Fatima Dicki started following you
1/12/2026, 6:25:48 AM
View record -
User #136 mention Brock Hackett mentioned you in a post
1/6/2026, 6:01:17 PM
View record -
User #61 like Judy Hackett liked your post
8/31/2025, 8:46:55 AM
View record -
User #224 mention Claudie Hagenes mentioned you in a post
5/5/2026, 12:20:09 PM
View record -
User #172 system System notification
6/6/2025, 9:08:32 PM
View record -
User #111 mention Rubye Emmerich mentioned you in a post
12/6/2025, 8:10:20 PM
View record -
User #114 follow Anne Hamill started following you
5/30/2025, 3:36:35 AM
View record -
User #248 follow Sheridan Turcotte started following you
11/14/2025, 8:50:27 AM
View record -
User #7 reply Jonas Rath replied to your comment
7/17/2025, 12:17:05 PM
View record -
User #203 system System notification
11/10/2025, 10:42:03 AM
View record -
User #79 follow Brad Wisoky started following you
3/25/2026, 7:08:35 AM
View record -
User #142 system System notification
2/17/2026, 5:00:57 PM
View record -
User #10 follow Queen Lubowitz started following you
2/16/2026, 12:03:40 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": 1849,
"userId": 58,
"type": "mention",
"title": "Claudie Hagenes mentioned you in a post",
"body": "Demens molestias auctor cetera tenetur causa crastinus crur denuo.",
"isRead": true,
"link": "https://example.com/mention/gYlgMxLw",
"createdAt": "2025-08-29T14:16:47.365Z"
},
{
"id": 1850,
"userId": 190,
"type": "mention",
"title": "Lenny Howe mentioned you in a post",
"body": "Varietas ascit sol carmen eaque acies aiunt callide curiositas.",
"isRead": true,
"link": "https://example.com/mention/QT1BKQ0d",
"createdAt": "2025-09-04T09:01:14.084Z"
},
{
"id": 1851,
"userId": 246,
"type": "follow",
"title": "Douglas Frami started following you",
"body": "Aperio caelestis asporto surgo trucido aegrotatio aegre arbor excepturi.",
"isRead": false,
"link": null,
"createdAt": "2026-05-14T12:58:32.047Z"
}
],
"meta": {
"page": 78,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=78&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=79&limit=24",
"prev": "/api/v1/notifications?page=77&limit=24"
}
}