Activity #666
User #233 system System notification
8/2/2025, 9:11:33 PM
Overview
notifications / #666
User #233 system System notification
8/2/2025, 9:11:33 PM
User #233 system System notification
8/2/2025, 9:11:33 PM
View recordUser #233 system System notification · 8/2/2025, 9:11:33 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/666" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/666" ); 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/666"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/666"
)
notification = res.json() Response
{
"id": 666,
"userId": 233,
"type": "system",
"title": "System notification",
"body": "Triumphus celebrer toties adeo amo cervus turba defendo tamisium crudelis.",
"isRead": false,
"link": "https://example.com/system/S92EqPRw",
"createdAt": "2025-08-02T21:11:33.484Z"
}