Activity #163
User #111 follow Judy Hackett started following you
2/15/2026, 6:05:08 PM
Overview
notifications / #163
User #111 follow Judy Hackett started following you
2/15/2026, 6:05:08 PM
User #111 follow Judy Hackett started following you
2/15/2026, 6:05:08 PM
View recordUser #111 follow Judy Hackett started following you · 2/15/2026, 6:05:08 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/163" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/163" ); 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/163"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/163"
)
notification = res.json() Response
{
"id": 163,
"userId": 111,
"type": "follow",
"title": "Judy Hackett started following you",
"body": "Temperantia eum atavus cetera valeo.",
"isRead": false,
"link": "https://example.com/follow/PGTuMuzl",
"createdAt": "2026-02-15T18:05:08.748Z"
}