Activity #82
User #8 reply Mazie Douglas replied to your comment
6/26/2025, 7:10:08 AM
Overview
notifications / #82
User #8 reply Mazie Douglas replied to your comment
6/26/2025, 7:10:08 AM
User #8 reply Mazie Douglas replied to your comment
6/26/2025, 7:10:08 AM
View recordUser #8 reply Mazie Douglas replied to your comment · 6/26/2025, 7:10:08 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/82" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/82" ); 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/82"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/82"
)
notification = res.json() Response
{
"id": 82,
"userId": 8,
"type": "reply",
"title": "Mazie Douglas replied to your comment",
"body": "Vergo amiculum necessitatibus coadunatio video.",
"isRead": false,
"link": null,
"createdAt": "2025-06-26T07:10:08.018Z"
}