Activity #888
User #3 follow Raheem Kovacek started following you
2/27/2026, 12:36:25 AM
Overview
notifications / #888
User #3 follow Raheem Kovacek started following you
2/27/2026, 12:36:25 AM
User #3 follow Raheem Kovacek started following you
2/27/2026, 12:36:25 AM
View recordUser #3 follow Raheem Kovacek started following you · 2/27/2026, 12:36:25 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/888" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/888" ); 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/888"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/888"
)
notification = res.json() Response
{
"id": 888,
"userId": 3,
"type": "follow",
"title": "Raheem Kovacek started following you",
"body": "Demum sum ipsam subito ratione crastinus.",
"isRead": false,
"link": "https://example.com/follow/SMWgN172",
"createdAt": "2026-02-27T00:36:25.087Z"
}