Activity #1913
User #181 system System notification
8/2/2025, 5:53:06 AM
Overview
notifications / #1913
User #181 system System notification
8/2/2025, 5:53:06 AM
User #181 system System notification
8/2/2025, 5:53:06 AM
View recordUser #181 system System notification · 8/2/2025, 5:53:06 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1913" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1913" ); 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/1913"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1913"
)
notification = res.json() Response
{
"id": 1913,
"userId": 181,
"type": "system",
"title": "System notification",
"body": "Tego aeternus spectaculum deludo desolo animi timidus desidero attonbitus ubi.",
"isRead": true,
"link": null,
"createdAt": "2025-08-02T05:53:06.908Z"
}