Activity #467
User #141 reply Kamryn Rogahn replied to your comment
6/16/2025, 4:30:12 PM
Overview
notifications / #467
User #141 reply Kamryn Rogahn replied to your comment
6/16/2025, 4:30:12 PM
User #141 reply Kamryn Rogahn replied to your comment
6/16/2025, 4:30:12 PM
View recordUser #141 reply Kamryn Rogahn replied to your comment · 6/16/2025, 4:30:12 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/467" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/467" ); 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/467"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/467"
)
notification = res.json() Response
{
"id": 467,
"userId": 141,
"type": "reply",
"title": "Kamryn Rogahn replied to your comment",
"body": "Vigilo adflicto nihil una claudeo.",
"isRead": false,
"link": "https://example.com/reply/3w29XFmR",
"createdAt": "2025-06-16T16:30:12.370Z"
}