Activity #33
User #106 system System notification
1/28/2026, 5:12:59 AM
Overview
notifications / #33
User #106 system System notification
1/28/2026, 5:12:59 AM
User #106 system System notification
1/28/2026, 5:12:59 AM
View recordUser #106 system System notification · 1/28/2026, 5:12:59 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/33" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/33" ); 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/33"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/33"
)
notification = res.json() Response
{
"id": 33,
"userId": 106,
"type": "system",
"title": "System notification",
"body": "Provident sub surculus tamdiu cupiditas vulgo tracto utpote vereor.",
"isRead": false,
"link": "https://example.com/system/VIfsGGPx",
"createdAt": "2026-01-28T05:12:59.535Z"
}