Activity #484
User #162 reply Orrin Grant replied to your comment
1/20/2026, 11:15:48 AM
Overview
notifications / #484
User #162 reply Orrin Grant replied to your comment
1/20/2026, 11:15:48 AM
User #162 reply Orrin Grant replied to your comment
1/20/2026, 11:15:48 AM
View recordUser #162 reply Orrin Grant replied to your comment · 1/20/2026, 11:15:48 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/484" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/484" ); 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/484"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/484"
)
notification = res.json() Response
{
"id": 484,
"userId": 162,
"type": "reply",
"title": "Orrin Grant replied to your comment",
"body": "Casus ara socius vulgaris defendo accusantium ad modi dens terebro.",
"isRead": false,
"link": "https://example.com/reply/ZRMOTPOL",
"createdAt": "2026-01-20T11:15:48.934Z"
}