notifications
notifications
Page 46 of 84.
Overview
-
User #213 like Trace Witting-Stamm liked your post
5/9/2026, 9:19:18 PM
View record -
User #216 like Roma Durgan liked your post
5/5/2026, 2:23:13 PM
View record -
User #182 like Gavin Lowe liked your post
6/3/2025, 8:40:17 AM
View record -
User #182 like Daisy Kuhic liked your post
12/4/2025, 7:23:35 AM
View record -
User #73 reply Roma Durgan replied to your comment
6/13/2025, 1:54:46 PM
View record -
User #166 follow Jaylon Conroy started following you
6/28/2025, 6:26:24 PM
View record -
User #95 reply Joseph Nitzsche replied to your comment
11/7/2025, 10:23:15 AM
View record -
User #137 mention Alexa Rippin mentioned you in a post
4/1/2026, 12:53:32 AM
View record -
User #29 mention Terence Lemke mentioned you in a post
3/30/2026, 11:43:41 AM
View record -
User #78 mention Anne Hamill mentioned you in a post
4/6/2026, 6:13:08 PM
View record -
User #9 like Jennifer Stoltenberg liked your post
6/17/2025, 11:49:19 AM
View record -
User #131 reply Kenya Abshire replied to your comment
9/25/2025, 2:21:31 AM
View record -
User #148 follow Samson Stroman started following you
11/23/2025, 4:40:25 PM
View record -
User #158 mention Otho Nikolaus mentioned you in a post
10/6/2025, 9:56:29 PM
View record -
User #150 system System notification
2/14/2026, 9:22:42 PM
View record -
User #18 system System notification
6/14/2025, 9:29:07 AM
View record -
User #40 like Leora Doyle liked your post
11/6/2025, 6:51:18 PM
View record -
User #207 mention Webster Skiles mentioned you in a post
10/14/2025, 9:26:09 AM
View record -
User #20 follow Dovie Gorczany started following you
6/20/2025, 4:33:35 AM
View record -
User #41 like Gerda Streich liked your post
5/4/2026, 4:00:19 AM
View record -
User #79 follow Gerda Streich started following you
6/3/2025, 3:55:50 PM
View record -
User #240 mention Cruz Okuneva mentioned you in a post
2/19/2026, 11:08:55 PM
View record -
User #194 like Glenna Keebler liked your post
7/1/2025, 11:20:23 AM
View record -
User #34 reply Matt Kuhic replied to your comment
6/21/2025, 11:04:36 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": 1081,
"userId": 213,
"type": "like",
"title": "Trace Witting-Stamm liked your post",
"body": "Dolores adflicto eligendi curis doloremque turpis tactus similique adipisci articulus.",
"isRead": true,
"link": null,
"createdAt": "2026-05-09T21:19:18.587Z"
},
{
"id": 1082,
"userId": 216,
"type": "like",
"title": "Roma Durgan liked your post",
"body": "Tactus thorax alter adhaero ascisco arcesso vilicus auxilium.",
"isRead": false,
"link": "https://example.com/like/T8boKn2N",
"createdAt": "2026-05-05T14:23:13.010Z"
},
{
"id": 1083,
"userId": 182,
"type": "like",
"title": "Gavin Lowe liked your post",
"body": "Canto cado alo coruscus reprehenderit.",
"isRead": true,
"link": "https://example.com/like/93aPbYSJ",
"createdAt": "2025-06-03T08:40:17.765Z"
}
],
"meta": {
"page": 46,
"limit": 24,
"total": 2000,
"totalPages": 84
},
"links": {
"self": "/api/v1/notifications?page=46&limit=24",
"first": "/api/v1/notifications?page=1&limit=24",
"last": "/api/v1/notifications?page=84&limit=24",
"next": "/api/v1/notifications?page=47&limit=24",
"prev": "/api/v1/notifications?page=45&limit=24"
}
}