Activity #998
User #131 system System notification
2/9/2026, 2:03:58 PM
Overview
notifications / #998
User #131 system System notification
2/9/2026, 2:03:58 PM
User #131 system System notification
2/9/2026, 2:03:58 PM
View recordUser #131 system System notification · 2/9/2026, 2:03:58 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/998" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/998" ); 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/998"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/998"
)
notification = res.json() Response
{
"id": 998,
"userId": 131,
"type": "system",
"title": "System notification",
"body": "Claro vesper tum clam soleo ascit omnis solitudo sonitus.",
"isRead": true,
"link": null,
"createdAt": "2026-02-09T14:03:58.657Z"
}