Activity #97
User #228 follow Filiberto Fay started following you
1/20/2026, 6:43:51 AM
Overview
notifications / #97
User #228 follow Filiberto Fay started following you
1/20/2026, 6:43:51 AM
User #228 follow Filiberto Fay started following you
1/20/2026, 6:43:51 AM
View recordUser #228 follow Filiberto Fay started following you · 1/20/2026, 6:43:51 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/97" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/97" ); const notification = 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 } from "./types/notifications";
const res = await fetch(
"https://example-data.com/api/v1/notifications/97"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/97"
)
notification = res.json() Response
{
"id": 97,
"userId": 228,
"type": "follow",
"title": "Filiberto Fay started following you",
"body": "Cernuus maiores cedo tollo thema trepide deporto minus delectatio.",
"isRead": false,
"link": "https://example.com/follow/3Rr1Wcnr",
"createdAt": "2026-01-20T06:43:51.826Z"
}