Activity #582
User #90 reply Allan Buckridge replied to your comment
10/19/2025, 4:23:58 PM
Overview
notifications / #582
User #90 reply Allan Buckridge replied to your comment
10/19/2025, 4:23:58 PM
User #90 reply Allan Buckridge replied to your comment
10/19/2025, 4:23:58 PM
View recordUser #90 reply Allan Buckridge replied to your comment · 10/19/2025, 4:23:58 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/582" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/582" ); 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/582"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/582"
)
notification = res.json() Response
{
"id": 582,
"userId": 90,
"type": "reply",
"title": "Allan Buckridge replied to your comment",
"body": "Spargo maiores venustas sursum tertius bellicus desolo commemoro dolores.",
"isRead": true,
"link": null,
"createdAt": "2025-10-19T16:23:58.263Z"
}