Activity #1793
User #18 reply Hilda Crooks replied to your comment
4/11/2026, 7:16:15 PM
Overview
notifications / #1793
User #18 reply Hilda Crooks replied to your comment
4/11/2026, 7:16:15 PM
User #18 reply Hilda Crooks replied to your comment
4/11/2026, 7:16:15 PM
View recordUser #18 reply Hilda Crooks replied to your comment · 4/11/2026, 7:16:15 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1793" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1793" ); 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/1793"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1793"
)
notification = res.json() Response
{
"id": 1793,
"userId": 18,
"type": "reply",
"title": "Hilda Crooks replied to your comment",
"body": "Cenaculum ciminatio uterque dolorum deripio.",
"isRead": false,
"link": "https://example.com/reply/QI1TBJOL",
"createdAt": "2026-04-11T19:16:15.994Z"
}