Activity #287
User #160 reply Conner Bernhard replied to your comment
2/21/2026, 10:01:25 PM
Overview
notifications / #287
User #160 reply Conner Bernhard replied to your comment
2/21/2026, 10:01:25 PM
User #160 reply Conner Bernhard replied to your comment
2/21/2026, 10:01:25 PM
View recordUser #160 reply Conner Bernhard replied to your comment · 2/21/2026, 10:01:25 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/287" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/287" ); 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/287"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/287"
)
notification = res.json() Response
{
"id": 287,
"userId": 160,
"type": "reply",
"title": "Conner Bernhard replied to your comment",
"body": "Thalassinus bellum contra numquam eaque coma.",
"isRead": false,
"link": null,
"createdAt": "2026-02-21T22:01:25.425Z"
}