Activity #548
User #28 reply Kaden Brekke replied to your comment
10/1/2025, 11:06:35 AM
Overview
notifications / #548
User #28 reply Kaden Brekke replied to your comment
10/1/2025, 11:06:35 AM
User #28 reply Kaden Brekke replied to your comment
10/1/2025, 11:06:35 AM
View recordUser #28 reply Kaden Brekke replied to your comment · 10/1/2025, 11:06:35 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/548" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/548" ); 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/548"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/548"
)
notification = res.json() Response
{
"id": 548,
"userId": 28,
"type": "reply",
"title": "Kaden Brekke replied to your comment",
"body": "Curtus audeo ars.",
"isRead": true,
"link": "https://example.com/reply/bk1NYVe5",
"createdAt": "2025-10-01T11:06:35.596Z"
}