notifications
notifications
Page 69 of 84.
Overview
-
User #241 follow Amparo Dietrich started following you
9/30/2025, 10:09:20 PM
View record -
User #168 mention Kenya Abshire mentioned you in a post
1/2/2026, 3:08:15 PM
View record -
User #1 system System notification
6/29/2025, 5:48:21 PM
View record -
User #166 like Antoinette Greenfelder liked your post
6/13/2025, 2:01:56 PM
View record -
User #186 like Hortense Cruickshank liked your post
8/9/2025, 5:25:15 AM
View record -
User #74 mention Antoinette Greenfelder mentioned you in a post
9/13/2025, 12:08:02 PM
View record -
User #56 system System notification
6/12/2025, 6:40:41 PM
View record -
User #158 system System notification
4/19/2026, 12:33:45 PM
View record -
User #118 reply Jaycee Erdman replied to your comment
3/14/2026, 6:33:37 PM
View record -
User #77 reply Brad Wisoky replied to your comment
8/13/2025, 8:56:16 PM
View record -
User #157 mention Melba Collier mentioned you in a post
4/25/2026, 4:14:10 AM
View record -
User #139 like Era Mitchell liked your post
10/20/2025, 7:34:06 PM
View record -
User #39 mention Frederic Armstrong mentioned you in a post
6/24/2025, 10:06:28 PM
View record -
User #156 follow Antoinette Greenfelder started following you
11/18/2025, 12:07:55 AM
View record -
User #34 system System notification
6/13/2025, 11:35:35 PM
View record -
User #153 system System notification
11/2/2025, 5:47:00 AM
View record -
User #137 system System notification
12/26/2025, 11:38:45 PM
View record -
User #127 mention Gwendolyn Wyman mentioned you in a post
10/21/2025, 11:32:11 PM
View record -
User #130 follow Lew O'Kon started following you
4/6/2026, 10:03:30 AM
View record -
User #44 mention Amely Daniel mentioned you in a post
8/15/2025, 5:34:00 AM
View record -
User #144 mention Jo Haag-Mayer mentioned you in a post
7/29/2025, 5:15:55 AM
View record -
User #20 like Jolie Abernathy liked your post
12/6/2025, 5:50:15 AM
View record -
User #132 mention Matilde Beahan mentioned you in a post
10/17/2025, 2:59:38 PM
View record -
User #130 follow Dasia Volkman started following you
9/3/2025, 1:49: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": 1633,
"userId": 241,
"type": "follow",
"title": "Amparo Dietrich started following you",
"body": "Ter non vacuus aequitas.",
"isRead": true,
"link": null,
"createdAt": "2025-09-30T22:09:20.742Z"
},
{
"id": 1634,
"userId": 168,
"type": "mention",
"title": "Kenya Abshire mentioned you in a post",
"body": "Veritatis communis absconditus modi succurro degero aggero.",
"isRead": false,
"link": "https://example.com/mention/iUvN6Fcq",
"createdAt": "2026-01-02T15:08:15.940Z"
},
{
"id": 1635,
"userId": 1,
"type": "system",
"title": "System notification",
"body": "Speciosus aperiam eum victus vicissitudo aduro.",
"isRead": false,
"link": "https://example.com/system/YqTUAFYo",
"createdAt": "2025-06-29T17:48:21.737Z"
}
],
"meta": {
"page": 69,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=69&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=70&limit=24",
"prev": "/api/v1/notifications?page=68&limit=24"
}
}