Activity #1324
User #95 reply Simeon Heathcote replied to your comment
3/25/2026, 5:17:56 PM
Overview
notifications / #1324
User #95 reply Simeon Heathcote replied to your comment
3/25/2026, 5:17:56 PM
User #95 reply Simeon Heathcote replied to your comment
3/25/2026, 5:17:56 PM
View recordUser #95 reply Simeon Heathcote replied to your comment · 3/25/2026, 5:17:56 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1324" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1324" ); 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/1324"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1324"
)
notification = res.json() Response
{
"id": 1324,
"userId": 95,
"type": "reply",
"title": "Simeon Heathcote replied to your comment",
"body": "Corrumpo uredo caput coaegresco.",
"isRead": false,
"link": "https://example.com/reply/9wecKlwL",
"createdAt": "2026-03-25T17:17:56.002Z"
}