Activity #507
User #174 reply Wilton Dietrich replied to your comment
3/5/2026, 4:02:37 AM
Overview
notifications / #507
User #174 reply Wilton Dietrich replied to your comment
3/5/2026, 4:02:37 AM
User #174 reply Wilton Dietrich replied to your comment
3/5/2026, 4:02:37 AM
View recordUser #174 reply Wilton Dietrich replied to your comment · 3/5/2026, 4:02:37 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/507" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/507" ); 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/507"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/507"
)
notification = res.json() Response
{
"id": 507,
"userId": 174,
"type": "reply",
"title": "Wilton Dietrich replied to your comment",
"body": "Quasi depulso peccatus tergeo auditor.",
"isRead": true,
"link": "https://example.com/reply/Kr8w33fA",
"createdAt": "2026-03-05T04:02:37.606Z"
}