Activity #1845
User #58 reply Hermina West replied to your comment
1/20/2026, 1:07:59 AM
Overview
notifications / #1845
User #58 reply Hermina West replied to your comment
1/20/2026, 1:07:59 AM
User #58 reply Hermina West replied to your comment
1/20/2026, 1:07:59 AM
View recordUser #58 reply Hermina West replied to your comment · 1/20/2026, 1:07:59 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1845" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1845" ); 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/1845"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1845"
)
notification = res.json() Response
{
"id": 1845,
"userId": 58,
"type": "reply",
"title": "Hermina West replied to your comment",
"body": "Absque deripio cras demoror ulciscor crastinus cattus.",
"isRead": false,
"link": "https://example.com/reply/2cscWtOB",
"createdAt": "2026-01-20T01:07:59.852Z"
}