Activity #868
User #92 follow Gerald Lind started following you
6/7/2025, 6:19:21 AM
Overview
notifications / #868
User #92 follow Gerald Lind started following you
6/7/2025, 6:19:21 AM
User #92 follow Gerald Lind started following you
6/7/2025, 6:19:21 AM
View recordUser #92 follow Gerald Lind started following you · 6/7/2025, 6:19:21 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/868" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/868" ); 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/868"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/868"
)
notification = res.json() Response
{
"id": 868,
"userId": 92,
"type": "follow",
"title": "Gerald Lind started following you",
"body": "Supplanto adfero thorax nam expedita crux bellicus ustulo.",
"isRead": false,
"link": "https://example.com/follow/yKZenTEV",
"createdAt": "2025-06-07T06:19:21.757Z"
}