Activity #1537
User #222 follow Green Kozey started following you
3/23/2026, 7:38:00 PM
Overview
notifications / #1537
User #222 follow Green Kozey started following you
3/23/2026, 7:38:00 PM
User #222 follow Green Kozey started following you
3/23/2026, 7:38:00 PM
View recordUser #222 follow Green Kozey started following you · 3/23/2026, 7:38:00 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1537" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1537" ); 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/1537"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1537"
)
notification = res.json() Response
{
"id": 1537,
"userId": 222,
"type": "follow",
"title": "Green Kozey started following you",
"body": "Adicio voro sublime magni curiositas viscus.",
"isRead": false,
"link": "https://example.com/follow/3-7FSB2V",
"createdAt": "2026-03-23T19:38:00.343Z"
}