Activity #1487
User #195 reply Melba Collier replied to your comment
9/18/2025, 5:22:13 PM
Overview
notifications / #1487
User #195 reply Melba Collier replied to your comment
9/18/2025, 5:22:13 PM
User #195 reply Melba Collier replied to your comment
9/18/2025, 5:22:13 PM
View recordUser #195 reply Melba Collier replied to your comment · 9/18/2025, 5:22:13 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1487" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1487" ); 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/1487"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1487"
)
notification = res.json() Response
{
"id": 1487,
"userId": 195,
"type": "reply",
"title": "Melba Collier replied to your comment",
"body": "Totus aureus solutio.",
"isRead": true,
"link": "https://example.com/reply/536UENGw",
"createdAt": "2025-09-18T17:22:13.423Z"
}