Activity #63
User #148 reply Vincenza Zemlak-Collier replied to your comment
5/1/2026, 10:15:38 PM
Overview
notifications / #63
User #148 reply Vincenza Zemlak-Collier replied to your comment
5/1/2026, 10:15:38 PM
User #148 reply Vincenza Zemlak-Collier replied to your comment
5/1/2026, 10:15:38 PM
View recordUser #148 reply Vincenza Zemlak-Collier replied to your comment · 5/1/2026, 10:15:38 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/63" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/63" ); 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/63"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/63"
)
notification = res.json() Response
{
"id": 63,
"userId": 148,
"type": "reply",
"title": "Vincenza Zemlak-Collier replied to your comment",
"body": "Tergiversatio auctus cibo suspendo cilicium quidem porro complectus animi.",
"isRead": true,
"link": "https://example.com/reply/qefqyy-a",
"createdAt": "2026-05-01T22:15:38.091Z"
}