Activity #1720
User #183 reply Green Kozey replied to your comment
12/9/2025, 6:45:11 PM
Overview
notifications / #1720
User #183 reply Green Kozey replied to your comment
12/9/2025, 6:45:11 PM
User #183 reply Green Kozey replied to your comment
12/9/2025, 6:45:11 PM
View recordUser #183 reply Green Kozey replied to your comment · 12/9/2025, 6:45:11 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1720" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1720" ); 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/1720"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1720"
)
notification = res.json() Response
{
"id": 1720,
"userId": 183,
"type": "reply",
"title": "Green Kozey replied to your comment",
"body": "Caelum volubilis collum autus surculus brevis abutor vapulus comitatus provident.",
"isRead": false,
"link": "https://example.com/reply/TmyAYo2b",
"createdAt": "2025-12-09T18:45:11.600Z"
}