Activity #1119
User #10 follow Green Kozey started following you
8/26/2025, 4:05:28 PM
Overview
notifications / #1119
User #10 follow Green Kozey started following you
8/26/2025, 4:05:28 PM
User #10 follow Green Kozey started following you
8/26/2025, 4:05:28 PM
View recordUser #10 follow Green Kozey started following you · 8/26/2025, 4:05:28 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1119" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1119" ); 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/1119"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1119"
)
notification = res.json() Response
{
"id": 1119,
"userId": 10,
"type": "follow",
"title": "Green Kozey started following you",
"body": "Pariatur cupiditas laudantium vereor statua contabesco clamo nisi tertius summisse.",
"isRead": true,
"link": "https://example.com/follow/-fTZ5mTg",
"createdAt": "2025-08-26T16:05:28.516Z"
}