Activity #1959
User #67 reply Selina Flatley replied to your comment
1/5/2026, 11:45:53 AM
Overview
notifications / #1959
User #67 reply Selina Flatley replied to your comment
1/5/2026, 11:45:53 AM
User #67 reply Selina Flatley replied to your comment
1/5/2026, 11:45:53 AM
View recordUser #67 reply Selina Flatley replied to your comment · 1/5/2026, 11:45:53 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1959" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1959" ); 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/1959"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1959"
)
notification = res.json() Response
{
"id": 1959,
"userId": 67,
"type": "reply",
"title": "Selina Flatley replied to your comment",
"body": "Bis traho defluo ustulo amplexus amita.",
"isRead": false,
"link": "https://example.com/reply/sEBBtkVv",
"createdAt": "2026-01-05T11:45:53.703Z"
}