Activity #1440
User #101 system System notification
1/13/2026, 2:58:08 AM
Overview
notifications / #1440
User #101 system System notification
1/13/2026, 2:58:08 AM
User #101 system System notification
1/13/2026, 2:58:08 AM
View recordUser #101 system System notification · 1/13/2026, 2:58:08 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1440" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1440" ); 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/1440"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1440"
)
notification = res.json() Response
{
"id": 1440,
"userId": 101,
"type": "system",
"title": "System notification",
"body": "Decumbo conforto amplus condico amplitudo atqui patria modi.",
"isRead": false,
"link": "https://example.com/system/pbjOfxk6",
"createdAt": "2026-01-13T02:58:08.464Z"
}