Activity #78
User #93 reply Adrain Kris-Hermiston replied to your comment
1/14/2026, 7:48:57 AM
Overview
notifications / #78
User #93 reply Adrain Kris-Hermiston replied to your comment
1/14/2026, 7:48:57 AM
User #93 reply Adrain Kris-Hermiston replied to your comment
1/14/2026, 7:48:57 AM
View recordUser #93 reply Adrain Kris-Hermiston replied to your comment · 1/14/2026, 7:48:57 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/78" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/78" ); 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/78"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/78"
)
notification = res.json() Response
{
"id": 78,
"userId": 93,
"type": "reply",
"title": "Adrain Kris-Hermiston replied to your comment",
"body": "Adnuo ter abbas templum capillus verus earum.",
"isRead": true,
"link": "https://example.com/reply/iRl8n953",
"createdAt": "2026-01-14T07:48:57.743Z"
}