Activity #533
User #96 system System notification
11/24/2025, 1:06:14 AM
Overview
notifications / #533
User #96 system System notification
11/24/2025, 1:06:14 AM
User #96 system System notification
11/24/2025, 1:06:14 AM
View recordUser #96 system System notification · 11/24/2025, 1:06:14 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/533" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/533" ); 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/533"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/533"
)
notification = res.json() Response
{
"id": 533,
"userId": 96,
"type": "system",
"title": "System notification",
"body": "Conforto conor crastinus suadeo.",
"isRead": true,
"link": null,
"createdAt": "2025-11-24T01:06:14.067Z"
}