Activity #1823
User #242 reply Earlene Wisozk replied to your comment
3/8/2026, 2:10:27 AM
Overview
notifications / #1823
User #242 reply Earlene Wisozk replied to your comment
3/8/2026, 2:10:27 AM
User #242 reply Earlene Wisozk replied to your comment
3/8/2026, 2:10:27 AM
View recordUser #242 reply Earlene Wisozk replied to your comment · 3/8/2026, 2:10:27 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1823" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1823" ); 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/1823"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1823"
)
notification = res.json() Response
{
"id": 1823,
"userId": 242,
"type": "reply",
"title": "Earlene Wisozk replied to your comment",
"body": "Thesis vitae vilicus arto campana est suppellex claro ratione thymbra.",
"isRead": false,
"link": "https://example.com/reply/e_jO7CII",
"createdAt": "2026-03-08T02:10:27.291Z"
}