Activity #864
User #42 reply Sonia Nolan replied to your comment
3/13/2026, 3:04:41 PM
Overview
notifications / #864
User #42 reply Sonia Nolan replied to your comment
3/13/2026, 3:04:41 PM
User #42 reply Sonia Nolan replied to your comment
3/13/2026, 3:04:41 PM
View recordUser #42 reply Sonia Nolan replied to your comment · 3/13/2026, 3:04:41 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/864" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/864" ); 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/864"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/864"
)
notification = res.json() Response
{
"id": 864,
"userId": 42,
"type": "reply",
"title": "Sonia Nolan replied to your comment",
"body": "Vinitor turbo thalassinus.",
"isRead": false,
"link": null,
"createdAt": "2026-03-13T15:04:41.765Z"
}