Activity #1
User #241 system System notification
12/26/2025, 2:25:47 PM
Overview
notifications / #1
User #241 system System notification
12/26/2025, 2:25:47 PM
User #241 system System notification
12/26/2025, 2:25:47 PM
View recordUser #241 system System notification · 12/26/2025, 2:25:47 PM
Request
curl example
curl -sS \
"https://example-data.com/api/v1/notifications/1" \
-H "Accept: application/json"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/notifications/1"
);
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/1"
);
const notification = (await res.json()) as Notification;
Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1"
)
notification = res.json()
Response
{
"id": 1,
"userId": 241,
"type": "system",
"title": "System notification",
"body": "Suffragium avarus ager confero.",
"isRead": true,
"link": null,
"createdAt": "2025-12-26T14:25:47.468Z"
}