Activity #956
User #136 reply Velma Jerde replied to your comment
4/20/2026, 7:44:57 PM
Overview
notifications / #956
User #136 reply Velma Jerde replied to your comment
4/20/2026, 7:44:57 PM
User #136 reply Velma Jerde replied to your comment
4/20/2026, 7:44:57 PM
View recordUser #136 reply Velma Jerde replied to your comment · 4/20/2026, 7:44:57 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/956" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/956" ); 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/956"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/956"
)
notification = res.json() Response
{
"id": 956,
"userId": 136,
"type": "reply",
"title": "Velma Jerde replied to your comment",
"body": "Tricesimus quia titulus usus vesper.",
"isRead": true,
"link": "https://example.com/reply/2k41ANG_",
"createdAt": "2026-04-20T19:44:57.018Z"
}