Activity #296
User #51 reply Glenna Keebler replied to your comment
6/13/2025, 4:36:54 AM
Overview
notifications / #296
User #51 reply Glenna Keebler replied to your comment
6/13/2025, 4:36:54 AM
User #51 reply Glenna Keebler replied to your comment
6/13/2025, 4:36:54 AM
View recordUser #51 reply Glenna Keebler replied to your comment · 6/13/2025, 4:36:54 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/296" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/296" ); 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/296"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/296"
)
notification = res.json() Response
{
"id": 296,
"userId": 51,
"type": "reply",
"title": "Glenna Keebler replied to your comment",
"body": "Doloremque benigne tamdiu stultus vitae considero trucido vergo similique dignissimos.",
"isRead": false,
"link": "https://example.com/reply/vYD3TxNB",
"createdAt": "2025-06-13T04:36:54.977Z"
}