Activity #379
User #154 follow Carroll Wisozk started following you
1/8/2026, 6:49:28 PM
Overview
notifications / #379
User #154 follow Carroll Wisozk started following you
1/8/2026, 6:49:28 PM
User #154 follow Carroll Wisozk started following you
1/8/2026, 6:49:28 PM
View recordUser #154 follow Carroll Wisozk started following you · 1/8/2026, 6:49:28 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/379" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/379" ); 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/379"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/379"
)
notification = res.json() Response
{
"id": 379,
"userId": 154,
"type": "follow",
"title": "Carroll Wisozk started following you",
"body": "Acsi triduana sub coadunatio creptio cupressus pauper curso caute.",
"isRead": false,
"link": null,
"createdAt": "2026-01-08T18:49:28.293Z"
}