Activity #1734
User #36 follow Diana Murazik started following you
3/25/2026, 4:32:27 AM
Overview
notifications / #1734
User #36 follow Diana Murazik started following you
3/25/2026, 4:32:27 AM
User #36 follow Diana Murazik started following you
3/25/2026, 4:32:27 AM
View recordUser #36 follow Diana Murazik started following you · 3/25/2026, 4:32:27 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1734" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1734" ); 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/1734"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1734"
)
notification = res.json() Response
{
"id": 1734,
"userId": 36,
"type": "follow",
"title": "Diana Murazik started following you",
"body": "Vulpes solio perspiciatis ulciscor adnuo causa crapula cena vester sublime.",
"isRead": false,
"link": "https://example.com/follow/g1zTQ1kB",
"createdAt": "2026-03-25T04:32:27.821Z"
}