Activity #101
User #198 reply Cindy Barrows replied to your comment
1/14/2026, 9:25:27 AM
Overview
notifications / #101
User #198 reply Cindy Barrows replied to your comment
1/14/2026, 9:25:27 AM
User #198 reply Cindy Barrows replied to your comment
1/14/2026, 9:25:27 AM
View recordUser #198 reply Cindy Barrows replied to your comment · 1/14/2026, 9:25:27 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/101" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/101" ); 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/101"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/101"
)
notification = res.json() Response
{
"id": 101,
"userId": 198,
"type": "reply",
"title": "Cindy Barrows replied to your comment",
"body": "Amiculum corona cognatus tres verbera terreo veritatis delibero ventosus tabernus.",
"isRead": true,
"link": "https://example.com/reply/duejCM5V",
"createdAt": "2026-01-14T09:25:27.963Z"
}