Activity #838
User #196 reply Edward Jacobson replied to your comment
3/12/2026, 5:52:01 PM
Overview
notifications / #838
User #196 reply Edward Jacobson replied to your comment
3/12/2026, 5:52:01 PM
User #196 reply Edward Jacobson replied to your comment
3/12/2026, 5:52:01 PM
View recordUser #196 reply Edward Jacobson replied to your comment · 3/12/2026, 5:52:01 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/838" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/838" ); 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/838"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/838"
)
notification = res.json() Response
{
"id": 838,
"userId": 196,
"type": "reply",
"title": "Edward Jacobson replied to your comment",
"body": "Ceno quis ambitus torqueo atqui.",
"isRead": true,
"link": "https://example.com/reply/eR2M_pGT",
"createdAt": "2026-03-12T17:52:01.413Z"
}