Activity #896
User #28 reply Florencio Mohr replied to your comment
11/18/2025, 3:55:06 PM
Overview
notifications / #896
User #28 reply Florencio Mohr replied to your comment
11/18/2025, 3:55:06 PM
User #28 reply Florencio Mohr replied to your comment
11/18/2025, 3:55:06 PM
View recordUser #28 reply Florencio Mohr replied to your comment · 11/18/2025, 3:55:06 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/896" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/896" ); 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/896"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/896"
)
notification = res.json() Response
{
"id": 896,
"userId": 28,
"type": "reply",
"title": "Florencio Mohr replied to your comment",
"body": "Vinitor ipsam dedico voluptas cohors cenaculum titulus decet.",
"isRead": true,
"link": "https://example.com/reply/r1uPKZqi",
"createdAt": "2025-11-18T15:55:06.770Z"
}