Activity #1795
User #60 follow Abdul Rau started following you
4/15/2026, 1:58:51 PM
Overview
notifications / #1795
User #60 follow Abdul Rau started following you
4/15/2026, 1:58:51 PM
User #60 follow Abdul Rau started following you
4/15/2026, 1:58:51 PM
View recordUser #60 follow Abdul Rau started following you · 4/15/2026, 1:58:51 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1795" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1795" ); 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/1795"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1795"
)
notification = res.json() Response
{
"id": 1795,
"userId": 60,
"type": "follow",
"title": "Abdul Rau started following you",
"body": "Accendo sint volutabrum utpote.",
"isRead": true,
"link": null,
"createdAt": "2026-04-15T13:58:51.876Z"
}