Activity #1126
User #242 reply Zachariah Herzog replied to your comment
1/28/2026, 12:50:47 AM
Overview
notifications / #1126
User #242 reply Zachariah Herzog replied to your comment
1/28/2026, 12:50:47 AM
User #242 reply Zachariah Herzog replied to your comment
1/28/2026, 12:50:47 AM
View recordUser #242 reply Zachariah Herzog replied to your comment · 1/28/2026, 12:50:47 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1126" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1126" ); 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/1126"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1126"
)
notification = res.json() Response
{
"id": 1126,
"userId": 242,
"type": "reply",
"title": "Zachariah Herzog replied to your comment",
"body": "Delinquo aestivus amaritudo demum arbustum dedecor.",
"isRead": false,
"link": "https://example.com/reply/mZgoAtKO",
"createdAt": "2026-01-28T00:50:47.735Z"
}