Activity #1970
User #104 reply Rosemary Krajcik replied to your comment
9/4/2025, 10:52:21 AM
Overview
notifications / #1970
User #104 reply Rosemary Krajcik replied to your comment
9/4/2025, 10:52:21 AM
User #104 reply Rosemary Krajcik replied to your comment
9/4/2025, 10:52:21 AM
View recordUser #104 reply Rosemary Krajcik replied to your comment · 9/4/2025, 10:52:21 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1970" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1970" ); 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/1970"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1970"
)
notification = res.json() Response
{
"id": 1970,
"userId": 104,
"type": "reply",
"title": "Rosemary Krajcik replied to your comment",
"body": "Conitor adhuc suspendo via enim.",
"isRead": false,
"link": null,
"createdAt": "2025-09-04T10:52:21.978Z"
}