Activity #549
User #160 reply Mathilde Ziemann-Nienow replied to your comment
7/17/2025, 1:57:56 AM
Overview
notifications / #549
User #160 reply Mathilde Ziemann-Nienow replied to your comment
7/17/2025, 1:57:56 AM
User #160 reply Mathilde Ziemann-Nienow replied to your comment
7/17/2025, 1:57:56 AM
View recordUser #160 reply Mathilde Ziemann-Nienow replied to your comment · 7/17/2025, 1:57:56 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/549" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/549" ); 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/549"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/549"
)
notification = res.json() Response
{
"id": 549,
"userId": 160,
"type": "reply",
"title": "Mathilde Ziemann-Nienow replied to your comment",
"body": "Bellum depereo conculco stips defleo tum demoror conforto.",
"isRead": false,
"link": "https://example.com/reply/IfBVKWdT",
"createdAt": "2025-07-17T01:57:56.679Z"
}