Activity #192
User #141 reply Rosella Homenick replied to your comment
9/29/2025, 7:16:57 PM
Overview
notifications / #192
User #141 reply Rosella Homenick replied to your comment
9/29/2025, 7:16:57 PM
User #141 reply Rosella Homenick replied to your comment
9/29/2025, 7:16:57 PM
View recordUser #141 reply Rosella Homenick replied to your comment · 9/29/2025, 7:16:57 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/192" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/192" ); 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/192"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/192"
)
notification = res.json() Response
{
"id": 192,
"userId": 141,
"type": "reply",
"title": "Rosella Homenick replied to your comment",
"body": "Coaegresco vehemens torqueo corrupti depono vesco acervus ultra patrocinor.",
"isRead": true,
"link": "https://example.com/reply/gGfpHfBn",
"createdAt": "2025-09-29T19:16:57.509Z"
}