Activity #94
User #83 reply Casimir Smitham replied to your comment
1/20/2026, 7:01:24 PM
Overview
notifications / #94
User #83 reply Casimir Smitham replied to your comment
1/20/2026, 7:01:24 PM
User #83 reply Casimir Smitham replied to your comment
1/20/2026, 7:01:24 PM
View recordUser #83 reply Casimir Smitham replied to your comment · 1/20/2026, 7:01:24 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/94" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/94" ); 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/94"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/94"
)
notification = res.json() Response
{
"id": 94,
"userId": 83,
"type": "reply",
"title": "Casimir Smitham replied to your comment",
"body": "Attero non comminor clamo subiungo atrocitas quis.",
"isRead": true,
"link": null,
"createdAt": "2026-01-20T19:01:24.216Z"
}