Activity #711
User #22 reply Charity Crona replied to your comment
3/3/2026, 10:03:41 PM
Overview
notifications / #711
User #22 reply Charity Crona replied to your comment
3/3/2026, 10:03:41 PM
User #22 reply Charity Crona replied to your comment
3/3/2026, 10:03:41 PM
View recordUser #22 reply Charity Crona replied to your comment · 3/3/2026, 10:03:41 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/711" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/711" ); 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/711"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/711"
)
notification = res.json() Response
{
"id": 711,
"userId": 22,
"type": "reply",
"title": "Charity Crona replied to your comment",
"body": "Acsi vindico venio tamen coma crinis delectus adeo.",
"isRead": true,
"link": "https://example.com/reply/PWK1w78H",
"createdAt": "2026-03-03T22:03:41.268Z"
}