Activity #928
User #163 follow General Morissette started following you
1/20/2026, 1:10:45 PM
Overview
notifications / #928
User #163 follow General Morissette started following you
1/20/2026, 1:10:45 PM
User #163 follow General Morissette started following you
1/20/2026, 1:10:45 PM
View recordUser #163 follow General Morissette started following you · 1/20/2026, 1:10:45 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/928" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/928" ); 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/928"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/928"
)
notification = res.json() Response
{
"id": 928,
"userId": 163,
"type": "follow",
"title": "General Morissette started following you",
"body": "Vulgaris tantillus deleniti volva eveniet amor demum.",
"isRead": false,
"link": "https://example.com/follow/Yi2309SZ",
"createdAt": "2026-01-20T13:10:45.540Z"
}