Activity #1987
User #133 system System notification
5/14/2026, 5:28:29 AM
Overview
notifications / #1987
User #133 system System notification
5/14/2026, 5:28:29 AM
User #133 system System notification
5/14/2026, 5:28:29 AM
View recordUser #133 system System notification · 5/14/2026, 5:28:29 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1987" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1987" ); 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/1987"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1987"
)
notification = res.json() Response
{
"id": 1987,
"userId": 133,
"type": "system",
"title": "System notification",
"body": "Coerceo sustineo uxor suspendo.",
"isRead": true,
"link": "https://example.com/system/o5OQZKjZ",
"createdAt": "2026-05-14T05:28:29.398Z"
}