Activity #1743
User #16 reply Anne Hamill replied to your comment
12/24/2025, 4:30:54 AM
Overview
notifications / #1743
User #16 reply Anne Hamill replied to your comment
12/24/2025, 4:30:54 AM
User #16 reply Anne Hamill replied to your comment
12/24/2025, 4:30:54 AM
View recordUser #16 reply Anne Hamill replied to your comment · 12/24/2025, 4:30:54 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1743" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1743" ); 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/1743"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1743"
)
notification = res.json() Response
{
"id": 1743,
"userId": 16,
"type": "reply",
"title": "Anne Hamill replied to your comment",
"body": "Correptius avaritia desolo aspernatur aut vindico.",
"isRead": false,
"link": "https://example.com/reply/lqFtI9Ci",
"createdAt": "2025-12-24T04:30:54.542Z"
}