Activity #760
User #199 reply Lazaro Rath replied to your comment
6/24/2025, 4:57:22 AM
Overview
notifications / #760
User #199 reply Lazaro Rath replied to your comment
6/24/2025, 4:57:22 AM
User #199 reply Lazaro Rath replied to your comment
6/24/2025, 4:57:22 AM
View recordUser #199 reply Lazaro Rath replied to your comment · 6/24/2025, 4:57:22 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/760" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/760" ); 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/760"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/760"
)
notification = res.json() Response
{
"id": 760,
"userId": 199,
"type": "reply",
"title": "Lazaro Rath replied to your comment",
"body": "Cumque cenaculum bos canonicus.",
"isRead": false,
"link": "https://example.com/reply/TO-EGbWb",
"createdAt": "2025-06-24T04:57:22.718Z"
}