Activity #1598
User #197 reply Lazaro Herzog replied to your comment
3/20/2026, 9:37:11 AM
Overview
notifications / #1598
User #197 reply Lazaro Herzog replied to your comment
3/20/2026, 9:37:11 AM
User #197 reply Lazaro Herzog replied to your comment
3/20/2026, 9:37:11 AM
View recordUser #197 reply Lazaro Herzog replied to your comment · 3/20/2026, 9:37:11 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1598" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1598" ); 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/1598"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1598"
)
notification = res.json() Response
{
"id": 1598,
"userId": 197,
"type": "reply",
"title": "Lazaro Herzog replied to your comment",
"body": "Voco patrocinor vinitor tenetur comis contabesco.",
"isRead": false,
"link": null,
"createdAt": "2026-03-20T09:37:11.314Z"
}