Activity #375
User #33 reply Ari Howe replied to your comment
4/11/2026, 3:17:17 AM
Overview
notifications / #375
User #33 reply Ari Howe replied to your comment
4/11/2026, 3:17:17 AM
User #33 reply Ari Howe replied to your comment
4/11/2026, 3:17:17 AM
View recordUser #33 reply Ari Howe replied to your comment · 4/11/2026, 3:17:17 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/375" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/375" ); 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/375"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/375"
)
notification = res.json() Response
{
"id": 375,
"userId": 33,
"type": "reply",
"title": "Ari Howe replied to your comment",
"body": "Cerno arca depraedor suasoria dolor caterva abbas consuasor amplitudo deripio.",
"isRead": false,
"link": null,
"createdAt": "2026-04-11T03:17:17.711Z"
}