Activity #1498
User #55 system System notification
10/22/2025, 4:38:28 AM
Overview
notifications / #1498
User #55 system System notification
10/22/2025, 4:38:28 AM
User #55 system System notification
10/22/2025, 4:38:28 AM
View recordUser #55 system System notification · 10/22/2025, 4:38:28 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1498" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1498" ); 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/1498"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1498"
)
notification = res.json() Response
{
"id": 1498,
"userId": 55,
"type": "system",
"title": "System notification",
"body": "Paulatim valde vulticulus quibusdam claudeo ter aer.",
"isRead": true,
"link": "https://example.com/system/_p-VdFjS",
"createdAt": "2025-10-22T04:38:28.647Z"
}