Activity #253
User #78 reply Michale Hilpert replied to your comment
10/29/2025, 10:09:08 PM
Overview
notifications / #253
User #78 reply Michale Hilpert replied to your comment
10/29/2025, 10:09:08 PM
User #78 reply Michale Hilpert replied to your comment
10/29/2025, 10:09:08 PM
View recordUser #78 reply Michale Hilpert replied to your comment · 10/29/2025, 10:09:08 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/253" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/253" ); 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/253"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/253"
)
notification = res.json() Response
{
"id": 253,
"userId": 78,
"type": "reply",
"title": "Michale Hilpert replied to your comment",
"body": "Conatus praesentium soluta sustineo harum debitis corrigo stabilis.",
"isRead": true,
"link": "https://example.com/reply/PHjx_3rz",
"createdAt": "2025-10-29T22:09:08.506Z"
}