Activity #432
User #102 reply Lew O'Kon replied to your comment
3/5/2026, 1:45:10 PM
Overview
notifications / #432
User #102 reply Lew O'Kon replied to your comment
3/5/2026, 1:45:10 PM
User #102 reply Lew O'Kon replied to your comment
3/5/2026, 1:45:10 PM
View recordUser #102 reply Lew O'Kon replied to your comment · 3/5/2026, 1:45:10 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/432" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/432" ); 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/432"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/432"
)
notification = res.json() Response
{
"id": 432,
"userId": 102,
"type": "reply",
"title": "Lew O'Kon replied to your comment",
"body": "Appositus comedo nesciunt.",
"isRead": false,
"link": null,
"createdAt": "2026-03-05T13:45:10.726Z"
}