Activity #839
User #160 follow Zachariah Herzog started following you
11/17/2025, 10:52:33 AM
Overview
notifications / #839
User #160 follow Zachariah Herzog started following you
11/17/2025, 10:52:33 AM
User #160 follow Zachariah Herzog started following you
11/17/2025, 10:52:33 AM
View recordUser #160 follow Zachariah Herzog started following you · 11/17/2025, 10:52:33 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/839" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/839" ); 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/839"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/839"
)
notification = res.json() Response
{
"id": 839,
"userId": 160,
"type": "follow",
"title": "Zachariah Herzog started following you",
"body": "Caveo tametsi coruscus cedo comparo textilis animus tepesco.",
"isRead": false,
"link": "https://example.com/follow/AacbvBZq",
"createdAt": "2025-11-17T10:52:33.938Z"
}