Activity #1998
User #218 reply Claudie Hagenes replied to your comment
11/29/2025, 9:08:12 PM
Overview
notifications / #1998
User #218 reply Claudie Hagenes replied to your comment
11/29/2025, 9:08:12 PM
User #218 reply Claudie Hagenes replied to your comment
11/29/2025, 9:08:12 PM
View recordUser #218 reply Claudie Hagenes replied to your comment · 11/29/2025, 9:08:12 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1998" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1998" ); 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/1998"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1998"
)
notification = res.json() Response
{
"id": 1998,
"userId": 218,
"type": "reply",
"title": "Claudie Hagenes replied to your comment",
"body": "Antepono vir calco ustilo sto vulgaris alias surculus varius ago.",
"isRead": true,
"link": "https://example.com/reply/SHDOs2fC",
"createdAt": "2025-11-29T21:08:12.442Z"
}