notifications
notifications
Page 66 of 84.
Overview
-
User #173 system System notification
4/29/2026, 2:09:03 PM
View record -
User #120 reply Marta Harvey replied to your comment
12/22/2025, 11:11:47 AM
View record -
User #33 follow Sandrine Osinski started following you
1/30/2026, 9:38:32 PM
View record -
User #238 system System notification
3/9/2026, 2:51:50 AM
View record -
User #29 mention Candace Mueller mentioned you in a post
9/11/2025, 6:10:34 AM
View record -
User #109 mention Leonor Corwin mentioned you in a post
11/27/2025, 5:09:04 AM
View record -
User #114 like Alvina Koch liked your post
7/25/2025, 1:34:55 PM
View record -
User #39 mention Talon Turner mentioned you in a post
7/16/2025, 7:18:27 AM
View record -
User #94 like Celia D'Amore liked your post
12/27/2025, 10:51:08 AM
View record -
User #93 mention Perry Kerluke mentioned you in a post
11/11/2025, 4:14:19 AM
View record -
User #44 mention Jamal Gerhold mentioned you in a post
9/8/2025, 4:09:43 PM
View record -
User #155 follow Antoinette Greenfelder started following you
7/15/2025, 6:41:15 PM
View record -
User #246 system System notification
12/3/2025, 10:49:44 AM
View record -
User #50 mention Green Kozey mentioned you in a post
4/30/2026, 2:10:42 AM
View record -
User #37 system System notification
9/21/2025, 10:14:02 PM
View record -
User #20 like Diana Murazik liked your post
3/13/2026, 8:24:00 AM
View record -
User #64 mention Einar Volkman mentioned you in a post
6/26/2025, 8:21:00 PM
View record -
User #126 reply Fatima Dicki replied to your comment
8/29/2025, 8:13:22 PM
View record -
User #181 follow Frederic Armstrong started following you
7/14/2025, 11:32:17 PM
View record -
User #154 reply Tabitha Ruecker replied to your comment
4/19/2026, 3:53:40 PM
View record -
User #135 follow Jamaal Rolfson started following you
12/30/2025, 12:39:04 AM
View record -
User #82 like Jonas Rath liked your post
6/30/2025, 12:41:47 PM
View record -
User #110 reply Cindy Barrows replied to your comment
6/10/2025, 1:20:25 PM
View record -
User #70 mention Earnestine Dickinson mentioned you in a post
3/17/2026, 4:18:45 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": 1561,
"userId": 173,
"type": "system",
"title": "System notification",
"body": "Necessitatibus defessus volup undique cohibeo.",
"isRead": true,
"link": "https://example.com/system/gzWcrT62",
"createdAt": "2026-04-29T14:09:03.981Z"
},
{
"id": 1562,
"userId": 120,
"type": "reply",
"title": "Marta Harvey replied to your comment",
"body": "Tabernus officia admoveo vero.",
"isRead": false,
"link": "https://example.com/reply/NewMkHhA",
"createdAt": "2025-12-22T11:11:47.398Z"
},
{
"id": 1563,
"userId": 33,
"type": "follow",
"title": "Sandrine Osinski started following you",
"body": "Commodi creta vix totidem delego suscipit molestias antiquus tollo.",
"isRead": true,
"link": "https://example.com/follow/8osy8n4J",
"createdAt": "2026-01-30T21:38:32.799Z"
}
],
"meta": {
"page": 66,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=66&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=67&limit=24",
"prev": "/api/v1/notifications?page=65&limit=24"
}
}