Activity #996
User #241 reply Mckenna Hegmann-Price replied to your comment
7/25/2025, 6:44:21 PM
Overview
notifications / #996
User #241 reply Mckenna Hegmann-Price replied to your comment
7/25/2025, 6:44:21 PM
User #241 reply Mckenna Hegmann-Price replied to your comment
7/25/2025, 6:44:21 PM
View recordUser #241 reply Mckenna Hegmann-Price replied to your comment · 7/25/2025, 6:44:21 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/996" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/996" ); 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/996"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/996"
)
notification = res.json() Response
{
"id": 996,
"userId": 241,
"type": "reply",
"title": "Mckenna Hegmann-Price replied to your comment",
"body": "Esse ante agnitio alioqui.",
"isRead": true,
"link": null,
"createdAt": "2025-07-25T18:44:21.089Z"
}