Activity #1844
User #238 reply Dasia Volkman replied to your comment
4/7/2026, 6:17:53 PM
Overview
notifications / #1844
User #238 reply Dasia Volkman replied to your comment
4/7/2026, 6:17:53 PM
User #238 reply Dasia Volkman replied to your comment
4/7/2026, 6:17:53 PM
View recordUser #238 reply Dasia Volkman replied to your comment · 4/7/2026, 6:17:53 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1844" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1844" ); 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/1844"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1844"
)
notification = res.json() Response
{
"id": 1844,
"userId": 238,
"type": "reply",
"title": "Dasia Volkman replied to your comment",
"body": "Sperno color aduro perspiciatis vos ratione vesper assumenda cotidie.",
"isRead": true,
"link": "https://example.com/reply/u17e_fjF",
"createdAt": "2026-04-07T18:17:53.334Z"
}