Activity #1934
User #77 reply Lew O'Kon replied to your comment
11/9/2025, 2:17:35 PM
Overview
notifications / #1934
User #77 reply Lew O'Kon replied to your comment
11/9/2025, 2:17:35 PM
User #77 reply Lew O'Kon replied to your comment
11/9/2025, 2:17:35 PM
View recordUser #77 reply Lew O'Kon replied to your comment · 11/9/2025, 2:17:35 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1934" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1934" ); 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/1934"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1934"
)
notification = res.json() Response
{
"id": 1934,
"userId": 77,
"type": "reply",
"title": "Lew O'Kon replied to your comment",
"body": "Dens vita placeat atavus blandior adfero acerbitas turpis possimus illum.",
"isRead": false,
"link": "https://example.com/reply/P3uRSSyJ",
"createdAt": "2025-11-09T14:17:35.093Z"
}