notifications
notifications
Page 42 of 84.
Overview
-
User #170 mention Everett Yundt mentioned you in a post
12/26/2025, 9:53:39 PM
View record -
User #13 like Britney Haag liked your post
12/17/2025, 4:11:40 PM
View record -
User #206 follow Elva Roberts started following you
1/30/2026, 11:37:48 PM
View record -
User #179 like Conner Bernhard liked your post
10/11/2025, 11:24:54 PM
View record -
User #65 system System notification
12/28/2025, 12:00:21 PM
View record -
User #38 follow Lamont Schroeder started following you
1/3/2026, 6:13:40 AM
View record -
User #205 mention Marlin Goldner mentioned you in a post
9/12/2025, 12:24:30 PM
View record -
User #56 follow Esperanza Casper started following you
2/4/2026, 2:46:27 PM
View record -
User #153 mention Ethyl Auer mentioned you in a post
11/19/2025, 4:34:54 AM
View record -
User #183 mention Hershel Smitham mentioned you in a post
2/22/2026, 2:20:26 AM
View record -
User #123 reply Kenya Abshire replied to your comment
1/29/2026, 12:02:30 PM
View record -
User #241 reply Mckenna Hegmann-Price replied to your comment
7/25/2025, 6:44:21 PM
View record -
User #181 like Frederic Armstrong liked your post
5/23/2025, 7:08:22 PM
View record -
User #131 system System notification
2/9/2026, 2:03:58 PM
View record -
User #231 mention Sheridan Turcotte mentioned you in a post
2/10/2026, 8:56:43 AM
View record -
User #2 follow Trace Witting-Stamm started following you
5/25/2025, 3:08:23 PM
View record -
User #226 like Tabitha McKenzie liked your post
12/4/2025, 10:22:35 AM
View record -
User #64 follow Cassidy Price-Schimmel started following you
2/24/2026, 10:45:09 PM
View record -
User #105 mention Kaleb Schmidt mentioned you in a post
6/4/2025, 1:23:10 PM
View record -
User #102 mention Izaiah Rempel mentioned you in a post
8/3/2025, 6:41:24 PM
View record -
User #200 reply Mateo Gerlach replied to your comment
12/4/2025, 12:42:22 AM
View record -
User #36 follow Hermina West started following you
1/14/2026, 8:56:48 AM
View record -
User #198 mention Lennie Dickinson mentioned you in a post
8/5/2025, 7:28:00 AM
View record -
User #142 reply Berniece Medhurst replied to your comment
2/19/2026, 3:48:41 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": 985,
"userId": 170,
"type": "mention",
"title": "Everett Yundt mentioned you in a post",
"body": "Cerno creta tertius corrigo summopere virtus quae adfero.",
"isRead": true,
"link": "https://example.com/mention/-6T2my5B",
"createdAt": "2025-12-26T21:53:39.095Z"
},
{
"id": 986,
"userId": 13,
"type": "like",
"title": "Britney Haag liked your post",
"body": "Canis curso deripio auctus adamo torrens creo conitor.",
"isRead": false,
"link": "https://example.com/like/0SErM-nx",
"createdAt": "2025-12-17T16:11:40.373Z"
},
{
"id": 987,
"userId": 206,
"type": "follow",
"title": "Elva Roberts started following you",
"body": "Adipisci thesaurus dolorum vulnus cena.",
"isRead": false,
"link": "https://example.com/follow/oNav7kUq",
"createdAt": "2026-01-30T23:37:48.881Z"
}
],
"meta": {
"page": 42,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=42&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=43&limit=24",
"prev": "/api/v1/notifications?page=41&limit=24"
}
}