Activity #1150
User #82 reply Matt Kuhic replied to your comment
2/28/2026, 2:36:28 AM
Overview
notifications / #1150
User #82 reply Matt Kuhic replied to your comment
2/28/2026, 2:36:28 AM
User #82 reply Matt Kuhic replied to your comment
2/28/2026, 2:36:28 AM
View recordUser #82 reply Matt Kuhic replied to your comment · 2/28/2026, 2:36:28 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1150" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1150" ); 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/1150"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1150"
)
notification = res.json() Response
{
"id": 1150,
"userId": 82,
"type": "reply",
"title": "Matt Kuhic replied to your comment",
"body": "Vesica vinum suppellex aegrotatio amplus coadunatio.",
"isRead": false,
"link": "https://example.com/reply/RWxDmk-M",
"createdAt": "2026-02-28T02:36:28.325Z"
}