Activity #1810
User #140 follow Rosemary Krajcik started following you
4/12/2026, 10:04:10 AM
Overview
notifications / #1810
User #140 follow Rosemary Krajcik started following you
4/12/2026, 10:04:10 AM
User #140 follow Rosemary Krajcik started following you
4/12/2026, 10:04:10 AM
View recordUser #140 follow Rosemary Krajcik started following you · 4/12/2026, 10:04:10 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1810" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1810" ); 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/1810"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1810"
)
notification = res.json() Response
{
"id": 1810,
"userId": 140,
"type": "follow",
"title": "Rosemary Krajcik started following you",
"body": "Stips arcus vitium quos arx iste cotidie annus dignissimos adsum.",
"isRead": true,
"link": null,
"createdAt": "2026-04-12T10:04:10.799Z"
}