Activity #275
User #117 reply Charity Crona replied to your comment
4/12/2026, 10:06:59 PM
Overview
notifications / #275
User #117 reply Charity Crona replied to your comment
4/12/2026, 10:06:59 PM
User #117 reply Charity Crona replied to your comment
4/12/2026, 10:06:59 PM
View recordUser #117 reply Charity Crona replied to your comment · 4/12/2026, 10:06:59 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/275" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/275" ); 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/275"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/275"
)
notification = res.json() Response
{
"id": 275,
"userId": 117,
"type": "reply",
"title": "Charity Crona replied to your comment",
"body": "Aperiam arguo capto ceno denuncio auctor clarus vallum auctor.",
"isRead": true,
"link": "https://example.com/reply/UqdMVvQi",
"createdAt": "2026-04-12T22:06:59.211Z"
}