Activity #1196
User #74 reply April Kihn replied to your comment
3/18/2026, 6:25:49 PM
Overview
notifications / #1196
User #74 reply April Kihn replied to your comment
3/18/2026, 6:25:49 PM
User #74 reply April Kihn replied to your comment
3/18/2026, 6:25:49 PM
View recordUser #74 reply April Kihn replied to your comment · 3/18/2026, 6:25:49 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1196" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1196" ); 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/1196"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1196"
)
notification = res.json() Response
{
"id": 1196,
"userId": 74,
"type": "reply",
"title": "April Kihn replied to your comment",
"body": "Voro suus deleniti voro pauper.",
"isRead": true,
"link": null,
"createdAt": "2026-03-18T18:25:49.061Z"
}