Activity #51
User #193 reply Margaretta Barrows replied to your comment
3/17/2026, 4:18:09 PM
Overview
notifications / #51
User #193 reply Margaretta Barrows replied to your comment
3/17/2026, 4:18:09 PM
User #193 reply Margaretta Barrows replied to your comment
3/17/2026, 4:18:09 PM
View recordUser #193 reply Margaretta Barrows replied to your comment · 3/17/2026, 4:18:09 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/51" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/51" ); 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/51"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/51"
)
notification = res.json() Response
{
"id": 51,
"userId": 193,
"type": "reply",
"title": "Margaretta Barrows replied to your comment",
"body": "Admiratio summopere depromo tendo eum.",
"isRead": true,
"link": null,
"createdAt": "2026-03-17T16:18:09.561Z"
}