Activity #299
User #141 follow Rosella Homenick started following you
1/6/2026, 8:45:45 AM
Overview
notifications / #299
User #141 follow Rosella Homenick started following you
1/6/2026, 8:45:45 AM
User #141 follow Rosella Homenick started following you
1/6/2026, 8:45:45 AM
View recordUser #141 follow Rosella Homenick started following you · 1/6/2026, 8:45:45 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/299" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/299" ); 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/299"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/299"
)
notification = res.json() Response
{
"id": 299,
"userId": 141,
"type": "follow",
"title": "Rosella Homenick started following you",
"body": "Verbum uberrime amitto defaeco deduco dolor suadeo omnis amet occaecati.",
"isRead": true,
"link": "https://example.com/follow/amaXLZuq",
"createdAt": "2026-01-06T08:45:45.166Z"
}