Activity #410
User #156 reply Wilton Dietrich replied to your comment
11/26/2025, 5:45:41 AM
Overview
notifications / #410
User #156 reply Wilton Dietrich replied to your comment
11/26/2025, 5:45:41 AM
User #156 reply Wilton Dietrich replied to your comment
11/26/2025, 5:45:41 AM
View recordUser #156 reply Wilton Dietrich replied to your comment · 11/26/2025, 5:45:41 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/410" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/410" ); 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/410"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/410"
)
notification = res.json() Response
{
"id": 410,
"userId": 156,
"type": "reply",
"title": "Wilton Dietrich replied to your comment",
"body": "Custodia creptio balbus canonicus.",
"isRead": true,
"link": "https://example.com/reply/7_ZezQNw",
"createdAt": "2025-11-26T05:45:41.958Z"
}