Activity #491
User #137 reply Lacy Gusikowski replied to your comment
4/9/2026, 1:13:12 PM
Overview
notifications / #491
User #137 reply Lacy Gusikowski replied to your comment
4/9/2026, 1:13:12 PM
User #137 reply Lacy Gusikowski replied to your comment
4/9/2026, 1:13:12 PM
View recordUser #137 reply Lacy Gusikowski replied to your comment · 4/9/2026, 1:13:12 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/491" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/491" ); 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/491"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/491"
)
notification = res.json() Response
{
"id": 491,
"userId": 137,
"type": "reply",
"title": "Lacy Gusikowski replied to your comment",
"body": "Cognatus nesciunt coadunatio absque aeternus velut cogo defendo solutio patria.",
"isRead": true,
"link": "https://example.com/reply/M_XRLhf4",
"createdAt": "2026-04-09T13:13:12.668Z"
}