Activity #175
User #68 reply General Morissette replied to your comment
7/24/2025, 12:29:12 AM
Overview
notifications / #175
User #68 reply General Morissette replied to your comment
7/24/2025, 12:29:12 AM
User #68 reply General Morissette replied to your comment
7/24/2025, 12:29:12 AM
View recordUser #68 reply General Morissette replied to your comment · 7/24/2025, 12:29:12 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/175" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/175" ); 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/175"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/175"
)
notification = res.json() Response
{
"id": 175,
"userId": 68,
"type": "reply",
"title": "General Morissette replied to your comment",
"body": "Cerno aliquid vito patior vesper sordeo aurum tabgo tabgo.",
"isRead": false,
"link": "https://example.com/reply/WUE83edN",
"createdAt": "2025-07-24T00:29:12.587Z"
}