Activity #1843
User #205 reply Mara Johnson replied to your comment
1/21/2026, 7:11:08 PM
Overview
notifications / #1843
User #205 reply Mara Johnson replied to your comment
1/21/2026, 7:11:08 PM
User #205 reply Mara Johnson replied to your comment
1/21/2026, 7:11:08 PM
View recordUser #205 reply Mara Johnson replied to your comment · 1/21/2026, 7:11:08 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1843" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1843" ); 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/1843"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1843"
)
notification = res.json() Response
{
"id": 1843,
"userId": 205,
"type": "reply",
"title": "Mara Johnson replied to your comment",
"body": "Tego aurum somniculosus certus careo defessus canto deludo ipsam vitae.",
"isRead": true,
"link": "https://example.com/reply/IVZocd83",
"createdAt": "2026-01-21T19:11:08.256Z"
}