Activity #1367
User #49 reply Aylin Sanford replied to your comment
2/9/2026, 7:28:59 PM
Overview
notifications / #1367
User #49 reply Aylin Sanford replied to your comment
2/9/2026, 7:28:59 PM
User #49 reply Aylin Sanford replied to your comment
2/9/2026, 7:28:59 PM
View recordUser #49 reply Aylin Sanford replied to your comment · 2/9/2026, 7:28:59 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1367" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1367" ); 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/1367"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1367"
)
notification = res.json() Response
{
"id": 1367,
"userId": 49,
"type": "reply",
"title": "Aylin Sanford replied to your comment",
"body": "Sustineo cotidie vivo damno vomica copiose dapifer ea.",
"isRead": false,
"link": "https://example.com/reply/EN-seTCw",
"createdAt": "2026-02-09T19:28:59.347Z"
}