Activity #1642
User #77 reply Brad Wisoky replied to your comment
8/13/2025, 8:56:16 PM
Overview
notifications / #1642
User #77 reply Brad Wisoky replied to your comment
8/13/2025, 8:56:16 PM
User #77 reply Brad Wisoky replied to your comment
8/13/2025, 8:56:16 PM
View recordUser #77 reply Brad Wisoky replied to your comment · 8/13/2025, 8:56:16 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1642" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1642" ); 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/1642"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1642"
)
notification = res.json() Response
{
"id": 1642,
"userId": 77,
"type": "reply",
"title": "Brad Wisoky replied to your comment",
"body": "Argumentum vita cavus vox desipio nobis solus.",
"isRead": true,
"link": "https://example.com/reply/ZVZLG90h",
"createdAt": "2025-08-13T20:56:16.607Z"
}