Activity #1753
User #48 reply Alex Lang replied to your comment
8/18/2025, 1:06:47 AM
Overview
notifications / #1753
User #48 reply Alex Lang replied to your comment
8/18/2025, 1:06:47 AM
User #48 reply Alex Lang replied to your comment
8/18/2025, 1:06:47 AM
View recordUser #48 reply Alex Lang replied to your comment · 8/18/2025, 1:06:47 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1753" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1753" ); 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/1753"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1753"
)
notification = res.json() Response
{
"id": 1753,
"userId": 48,
"type": "reply",
"title": "Alex Lang replied to your comment",
"body": "Suadeo usus exercitationem certe vesper tracto aegrus vel.",
"isRead": false,
"link": "https://example.com/reply/2bdeopbr",
"createdAt": "2025-08-18T01:06:47.810Z"
}