Activity #1172
User #171 reply Allan Buckridge replied to your comment
12/3/2025, 8:12:16 PM
Overview
notifications / #1172
User #171 reply Allan Buckridge replied to your comment
12/3/2025, 8:12:16 PM
User #171 reply Allan Buckridge replied to your comment
12/3/2025, 8:12:16 PM
View recordUser #171 reply Allan Buckridge replied to your comment · 12/3/2025, 8:12:16 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1172" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1172" ); 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/1172"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1172"
)
notification = res.json() Response
{
"id": 1172,
"userId": 171,
"type": "reply",
"title": "Allan Buckridge replied to your comment",
"body": "Vulpes comburo adeptio tempus dedico harum laboriosam tredecim.",
"isRead": false,
"link": null,
"createdAt": "2025-12-03T20:12:16.712Z"
}