Activity #388
User #1 reply Celia D'Amore replied to your comment
4/8/2026, 6:02:30 PM
Overview
notifications / #388
User #1 reply Celia D'Amore replied to your comment
4/8/2026, 6:02:30 PM
User #1 reply Celia D'Amore replied to your comment
4/8/2026, 6:02:30 PM
View recordUser #1 reply Celia D'Amore replied to your comment · 4/8/2026, 6:02:30 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/388" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/388" ); 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/388"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/388"
)
notification = res.json() Response
{
"id": 388,
"userId": 1,
"type": "reply",
"title": "Celia D'Amore replied to your comment",
"body": "Cerno subseco decet defluo suppellex viridis abbas suppellex subnecto.",
"isRead": true,
"link": "https://example.com/reply/K50IQ8gg",
"createdAt": "2026-04-08T18:02:30.729Z"
}