Activity #1422
User #145 reply Amely Daniel replied to your comment
10/2/2025, 9:49:36 AM
Overview
notifications / #1422
User #145 reply Amely Daniel replied to your comment
10/2/2025, 9:49:36 AM
User #145 reply Amely Daniel replied to your comment
10/2/2025, 9:49:36 AM
View recordUser #145 reply Amely Daniel replied to your comment · 10/2/2025, 9:49:36 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1422" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1422" ); 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/1422"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1422"
)
notification = res.json() Response
{
"id": 1422,
"userId": 145,
"type": "reply",
"title": "Amely Daniel replied to your comment",
"body": "Decerno vinculum utroque vobis speculum ipsam currus.",
"isRead": false,
"link": "https://example.com/reply/js3blNFC",
"createdAt": "2025-10-02T09:49:36.857Z"
}