Activity #470
User #141 system System notification
5/14/2026, 10:01:02 PM
Overview
notifications / #470
User #141 system System notification
5/14/2026, 10:01:02 PM
User #141 system System notification
5/14/2026, 10:01:02 PM
View recordUser #141 system System notification · 5/14/2026, 10:01:02 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/470" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/470" ); 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/470"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/470"
)
notification = res.json() Response
{
"id": 470,
"userId": 141,
"type": "system",
"title": "System notification",
"body": "Velum cimentarius usitas vitae ustulo dedico cicuta amplus.",
"isRead": true,
"link": "https://example.com/system/Vm7OROhe",
"createdAt": "2026-05-14T22:01:02.729Z"
}