Activity #160
User #124 follow Arnaldo Friesen started following you
9/18/2025, 7:43:18 PM
Overview
notifications / #160
User #124 follow Arnaldo Friesen started following you
9/18/2025, 7:43:18 PM
User #124 follow Arnaldo Friesen started following you
9/18/2025, 7:43:18 PM
View recordUser #124 follow Arnaldo Friesen started following you · 9/18/2025, 7:43:18 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/160" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/160" ); 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/160"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/160"
)
notification = res.json() Response
{
"id": 160,
"userId": 124,
"type": "follow",
"title": "Arnaldo Friesen started following you",
"body": "Sufficio traho crastinus volaticus undique usitas vel termes abduco cilicium.",
"isRead": false,
"link": "https://example.com/follow/L8S1O_PK",
"createdAt": "2025-09-18T19:43:18.201Z"
}