Activity #796
User #36 reply Candace Mueller replied to your comment
9/20/2025, 5:09:49 PM
Overview
notifications / #796
User #36 reply Candace Mueller replied to your comment
9/20/2025, 5:09:49 PM
User #36 reply Candace Mueller replied to your comment
9/20/2025, 5:09:49 PM
View recordUser #36 reply Candace Mueller replied to your comment · 9/20/2025, 5:09:49 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/796" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/796" ); 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/796"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/796"
)
notification = res.json() Response
{
"id": 796,
"userId": 36,
"type": "reply",
"title": "Candace Mueller replied to your comment",
"body": "Defero traho admiratio suasoria cubitum uxor solvo tres.",
"isRead": true,
"link": null,
"createdAt": "2025-09-20T17:09:49.330Z"
}