notifications
notifications
Page 59 of 84.
Overview
-
User #175 follow Sarah West started following you
1/1/2026, 4:12:27 PM
View record -
User #56 follow Amya Powlowski started following you
10/17/2025, 1:07:16 AM
View record -
User #102 follow Lilly Rosenbaum started following you
3/9/2026, 10:29:39 PM
View record -
User #188 follow Dwight Dicki-Medhurst started following you
10/6/2025, 3:27:23 PM
View record -
User #158 mention Brycen Bayer mentioned you in a post
4/23/2026, 6:55:48 AM
View record -
User #241 like Orrin Grant liked your post
6/9/2025, 6:22:36 PM
View record -
User #239 like Wallace Batz liked your post
7/15/2025, 11:45:23 AM
View record -
User #95 like Rosina Larkin liked your post
12/5/2025, 12:56:02 PM
View record -
User #119 mention Karolann Legros mentioned you in a post
11/16/2025, 12:45:25 PM
View record -
User #79 reply D'angelo Kling replied to your comment
10/10/2025, 2:20:47 PM
View record -
User #14 follow Einar Volkman started following you
6/24/2025, 8:14:18 PM
View record -
User #238 mention Gerda Streich mentioned you in a post
12/11/2025, 3:00:13 PM
View record -
User #177 mention Loren Schmidt mentioned you in a post
7/22/2025, 12:41:26 PM
View record -
User #175 follow Brad Wisoky started following you
6/10/2025, 7:47:07 AM
View record -
User #95 reply Rubye Emmerich replied to your comment
5/26/2025, 12:40:46 AM
View record -
User #147 mention Clyde Bernier-Gleason mentioned you in a post
6/3/2025, 5:56:01 AM
View record -
User #1 follow Jamil Mayer started following you
5/5/2026, 4:39:19 PM
View record -
User #182 system System notification
8/1/2025, 3:49:59 AM
View record -
User #43 reply Karlee MacGyver replied to your comment
1/30/2026, 10:49:53 AM
View record -
User #228 reply Filiberto Fay replied to your comment
6/3/2025, 2:59:32 PM
View record -
User #175 follow Nikolas Wolf started following you
10/4/2025, 8:20:15 PM
View record -
User #122 like Maryam Kunze liked your post
3/31/2026, 1:49:39 AM
View record -
User #135 follow Frederic Armstrong started following you
5/6/2026, 6:43:16 AM
View record -
User #140 like Amina King liked your post
3/13/2026, 8:51:23 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": 1393,
"userId": 175,
"type": "follow",
"title": "Sarah West started following you",
"body": "Acquiro claro tolero solitudo culpo.",
"isRead": false,
"link": "https://example.com/follow/LgcsloRd",
"createdAt": "2026-01-01T16:12:27.841Z"
},
{
"id": 1394,
"userId": 56,
"type": "follow",
"title": "Amya Powlowski started following you",
"body": "Ambitus in dignissimos aeneus damno.",
"isRead": false,
"link": "https://example.com/follow/B4gGfpfE",
"createdAt": "2025-10-17T01:07:16.338Z"
},
{
"id": 1395,
"userId": 102,
"type": "follow",
"title": "Lilly Rosenbaum started following you",
"body": "Depulso pecus deputo balbus.",
"isRead": true,
"link": "https://example.com/follow/BTgcBjQh",
"createdAt": "2026-03-09T22:29:39.496Z"
}
],
"meta": {
"page": 59,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=59&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=60&limit=24",
"prev": "/api/v1/notifications?page=58&limit=24"
}
}