Activity #1578
User #126 reply Fatima Dicki replied to your comment
8/29/2025, 8:13:22 PM
Overview
notifications / #1578
User #126 reply Fatima Dicki replied to your comment
8/29/2025, 8:13:22 PM
User #126 reply Fatima Dicki replied to your comment
8/29/2025, 8:13:22 PM
View recordUser #126 reply Fatima Dicki replied to your comment · 8/29/2025, 8:13:22 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1578" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1578" ); 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/1578"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1578"
)
notification = res.json() Response
{
"id": 1578,
"userId": 126,
"type": "reply",
"title": "Fatima Dicki replied to your comment",
"body": "Abbas animus tripudio mollitia complectus vereor acidus commodi.",
"isRead": true,
"link": "https://example.com/reply/FxA91XiW",
"createdAt": "2025-08-29T20:13:22.532Z"
}